Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 7, 2024. It is now read-only.

Commit d145535

Browse files
committed
fix release artifacts
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
1 parent 26bb05b commit d145535

File tree

8 files changed

+20
-291
lines changed

8 files changed

+20
-291
lines changed

‎bundles/bundle/pom.xml

Lines changed: 0 additions & 227 deletions
This file was deleted.

‎bundles/bundle/src/main/jdk9/module-info.java

Lines changed: 0 additions & 47 deletions
This file was deleted.

‎bundles/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
<url>https://javaee.github.io/jsonp</url>
6060

6161
<modules>
62-
<module>bundle</module>
6362
<module>ri</module>
6463
</modules>
6564
<profiles>

‎bundles/ri/pom.xml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@
5454
<packaging>pom</packaging>
5555

5656
<dependencies>
57+
<dependency>
58+
<groupId>javax.json</groupId>
59+
<artifactId>javax.json-api</artifactId>
60+
</dependency>
5761
<dependency>
5862
<groupId>org.glassfish</groupId>
5963
<artifactId>javax.json</artifactId>
@@ -69,19 +73,11 @@
6973
<id>copy</id>
7074
<phase>generate-sources</phase>
7175
<goals>
72-
<goal>copy</goal>
76+
<goal>copy-dependencies</goal>
7377
</goals>
7478
<configuration>
7579
<stripVersion>false</stripVersion>
76-
<artifactItems>
77-
<artifactItem>
78-
<groupId>org.glassfish</groupId>
79-
<artifactId>javax.json</artifactId>
80-
<type>jar</type>
81-
<overWrite>false</overWrite>
82-
<outputDirectory>${assembly.directory}</outputDirectory>
83-
</artifactItem>
84-
</artifactItems>
80+
<outputDirectory>${assembly.directory}</outputDirectory>
8581
</configuration>
8682
</execution>
8783
</executions>
Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1-
* javax.json-1.1.jar contains both "JSR 374 : Java API for JSON Processing 1.1" API and its default provider implementation. Keep it in classpath for both compiling and running your application.
1+
* javax.json-1.1.2.jar contains both "JSR 374 : Java API for JSON Processing 1.1" API and its default provider implementation. Keep it in classpath for both compiling and running your application.
22

33
* If you are running with maven, you can use the following maven coordinates:
44

5+
for APIs:
6+
<dependency>
7+
<groupId>javax.json</groupId>
8+
<artifactId>javax.json-api</artifactId>
9+
<version>1.1.2</version>
10+
</dependency>
11+
12+
for reference implementation:
13+
514
<dependency>
615
<groupId>org.glassfish</groupId>
716
<artifactId>javax.json</artifactId>
8-
<version>1.1</version>
17+
<version>1.1.2</version>
918
</dependency>
1019

11-
* GlassFish 5.x already bundles latest JSON Processing implementation and JAX-RS integration module. If you deploy an application with GlassFish 5.x, your application (war/ear) doesn't have to bundle the ri jar.
20+
* GlassFish 5.x already bundles latest JSON Processing implementation and JAX-RS integration module. If you deploy an application with GlassFish 5.x, your application (war/ear) doesn't have to bundle APIs nor the ri jar.
1221

1322
* Samples can be run from https://github.com/javaee/glassfish-samples

‎impl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
</parent>
5353

5454
<groupId>org.glassfish</groupId>
55-
<artifactId>java.json</artifactId>
55+
<artifactId>javax.json</artifactId>
5656
<packaging>bundle</packaging>
5757
<version>1.1.2-SNAPSHOT</version>
5858
<name>JSR 374 (JSON Processing) Default Provider</name>

‎pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,6 @@
315315
<modules>
316316
<module>api</module>
317317
<module>impl</module>
318-
<module>bundles/bundle</module>
319318
<module>jaxrs</module>
320319
</modules>
321320
</profile>

‎tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
</dependency>
6363
<dependency>
6464
<groupId>org.glassfish</groupId>
65-
<artifactId>java.json</artifactId>
65+
<artifactId>javax.json</artifactId>
6666
<scope>test</scope>
6767
</dependency>
6868
<dependency>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /