You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 7, 2024. It is now read-only.
* javax.json-1.0.jar contains both "JSR 353 : Java API for JSON Processing" API and its default provider implementation. Keep it in classpath for both compiling and running your application.
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.
2
2
3
3
* If you are running with maven, you can use the following maven coordinates:
4
4
5
5
<dependency>
6
6
<groupId>org.glassfish</groupId>
7
7
<artifactId>javax.json</artifactId>
8
-
<version>1.0</version>
8
+
<version>1.1</version>
9
9
</dependency>
10
10
11
-
* GlassFix 4.x already bundles latest JSON Processing implementation and JAX-RS integration module. If you deploy an application with GlassFish 4.x, your application (war/ear) doesn't have to bundle the ri jar.
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.
12
12
13
-
* Samples can be run from http://glassfish-samples.java.net
13
+
* Samples can be run from https://github.com/javaee/glassfish-samples
Copy file name to clipboardExpand all lines: jaxrs-1x/pom.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@
56
56
<version>1.1.0-SNAPSHOT</version>
57
57
<name>JSR 374 (JSON Processing) Media for JAX-RS 1.1</name>
58
58
<description>JAX-RS 1.1 MessageBodyReader and MessageBodyWriter to support JsonObject/JsonArray/JsonStructure API of JSR 374:Java API for Processing JSON</description>
0 commit comments