Skip to content

Commit eb28d33

Browse files
Tomas-Krauslukasj
authored andcommitted
Module java.json renamed to jakarta.json. (#223)
* Module java.json renamed to jakarta.json. * Version updated to 2.0.0-SNAPSHOT. Signed-off-by: Tomas Kraus <Tomas.Kraus@oracle.com>
1 parent 3174ac4 commit eb28d33

File tree

21 files changed

+32
-32
lines changed

21 files changed

+32
-32
lines changed

api/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2011, 2020 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0, which is available at
@@ -23,14 +23,14 @@
2323
<parent>
2424
<groupId>org.glassfish</groupId>
2525
<artifactId>json</artifactId>
26-
<version>2.0-SNAPSHOT</version>
26+
<version>2.0.0-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

3030
<groupId>jakarta.json</groupId>
3131
<artifactId>jakarta.json-api</artifactId>
3232
<packaging>bundle</packaging>
33-
<version>2.0-SNAPSHOT</version>
33+
<version>2.0.0-SNAPSHOT</version>
3434
<name>Jakarta JSON Processing API</name>
3535
<description>Jakarta JSON Processing defines a Java(R) based framework for parsing, generating, transforming, and querying JSON documents.</description>
3636
<url>https://github.com/eclipse-ee4j/jsonp</url>

api/src/main/jdk9/module-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2020 Oracle and/or its affiliates. All rights reserved.
33
*
44
* This program and the accompanying materials are made available under the
55
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -17,7 +17,7 @@
1717
/**
1818
* Jakarta JSON Processing API.
1919
*/
20-
module java.json {
20+
module jakarta.json {
2121
exports jakarta.json;
2222
exports jakarta.json.spi;
2323
exports jakarta.json.stream;

bundles/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2013, 2020 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0, which is available at
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.glassfish</groupId>
2525
<artifactId>json</artifactId>
26-
<version>2.0-SNAPSHOT</version>
26+
<version>2.0.0-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

bundles/ri/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.glassfish</groupId>
2424
<artifactId>json-bundles</artifactId>
25-
<version>2.0-SNAPSHOT</version>
25+
<version>2.0.0-SNAPSHOT</version>
2626
</parent>
2727

2828
<artifactId>json-ri-bundle</artifactId>

demos/customprovider-jdk9/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
3-
Copyright (c) 2017, 2019 Oracle and/or its affiliates. All rights reserved.
3+
Copyright (c) 2017, 2020 Oracle and/or its affiliates. All rights reserved.
44
55
This program and the accompanying materials are made available under the
66
terms of the Eclipse Distribution License v. 1.0, which is available at
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.glassfish.jsonp</groupId>
1818
<artifactId>demos</artifactId>
19-
<version>2.0-SNAPSHOT</version>
19+
<version>2.0.0-SNAPSHOT</version>
2020
<relativePath>../pom.xml</relativePath>
2121
</parent>
2222

demos/customprovider-jdk9/src/main/jdk9/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
module org.glassfish.java.json.demos.customprovider {
12-
requires transitive java.json;
12+
requires transitive jakarta.json;
1313
exports org.glassfish.json.customprovider;
1414
provides jakarta.json.spi.JsonProvider with org.glassfish.json.customprovider.TestProvider;
1515
}

demos/facebook/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.glassfish.jsonp</groupId>
1818
<artifactId>demos</artifactId>
19-
<version>2.0-SNAPSHOT</version>
19+
<version>2.0.0-SNAPSHOT</version>
2020
<relativePath>../pom.xml</relativePath>
2121
</parent>
2222

demos/jaxrs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.glassfish.jsonp</groupId>
1818
<artifactId>demos</artifactId>
19-
<version>2.0-SNAPSHOT</version>
19+
<version>2.0.0-SNAPSHOT</version>
2020
<relativePath>../pom.xml</relativePath>
2121
</parent>
2222

demos/jsonpointer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.glassfish.jsonp</groupId>
1818
<artifactId>demos</artifactId>
19-
<version>2.0-SNAPSHOT</version>
19+
<version>2.0.0-SNAPSHOT</version>
2020
<relativePath>../pom.xml</relativePath>
2121
</parent>
2222

demos/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.glassfish</groupId>
1818
<artifactId>json</artifactId>
19-
<version>2.0-SNAPSHOT</version>
19+
<version>2.0.0-SNAPSHOT</version>
2020
<relativePath>../pom.xml</relativePath>
2121
</parent>
2222

0 commit comments

Comments
 (0)