j

jaxrs-ri

A bundle project producing JAX-RS RI bundles. The primary artifact is an "all-in-one" OSGi-fied JAX-RS RI bundle (jaxrs-ri.jar). Attached to that are two compressed JAX-RS RI archives. The first archive (jaxrs-ri.zip) consists of binary RI bits and contains the API jar (under "api" directory), RI libraries (under "lib" directory) as well as all external RI dependencies (under "ext" directory). The secondary archive (jaxrs-ri-src.zip) contains buildable JAX-RS RI source bundle and contains the API jar (under "api" directory), RI sources (under "src" directory) as well as all external RI dependencies (under "ext" directory). The second archive also contains "build.xml" ANT script that builds the RI sources. To build the JAX-RS RI simply unzip the archive, cd to the created jaxrs-ri directory and invoke "ant" from the command line.
文件下载
文件名 操作
jaxrs-ri-3.0.6.jar 下载
jaxrs-ri-3.0.6.pom 下载
jaxrs-ri-3.0.6-sources.jar 下载
Apache Maven
<dependency>
  <groupId>org.glassfish.jersey.bundles</groupId>
  <artifactId>jaxrs-ri</artifactId>
  <version>3.0.6</version>
  <type>bundle</type>
</dependency>
Gradle Groovy
implementation 'org.glassfish.jersey.bundles:jaxrs-ri:3.0.6'
Gradle Kotlin
implementation("org.glassfish.jersey.bundles:jaxrs-ri:3.0.6")
Scala SBT
libraryDependencies += "org.glassfish.jersey.bundles" % "jaxrs-ri" % "3.0.6"
Groovy Grape
@Grapes(
  @Grab(group='org.glassfish.jersey.bundles', module='jaxrs-ri', version='3.0.6')
)
Apache Ivy
<dependency org="org.glassfish.jersey.bundles" name="jaxrs-ri" rev="3.0.6" />
Leiningen
[org.glassfish.jersey.bundles/jaxrs-ri "3.0.6"]
Apache Buildr
'org.glassfish.jersey.bundles:jaxrs-ri:jar:3.0.6'