<dependencies> |
<dependency> |
<groupId>org.apache.logging.log4j</groupId> |
<artifactId>log4j-core</artifactId> |
</dependency> |
|
<dependency> |
<groupId>javax.annotation</groupId> |
<artifactId>javax.annotation-api</artifactId> |
</dependency> |
|
<dependency> |
<groupId>javax.enterprise</groupId> |
<artifactId>cdi-api</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.jboss.weld.se</groupId> |
<artifactId>weld-se-core</artifactId> |
</dependency> |
|
<dependency> |
<groupId>javax.xml.bind</groupId> |
<artifactId>jaxb-api</artifactId> |
</dependency> |
|
<dependency> |
<groupId>javax.json</groupId> |
<artifactId>javax.json-api</artifactId> |
</dependency> |
|
<dependency> |
<groupId>javax.json.bind</groupId> |
<artifactId>javax.json.bind-api</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.eclipse</groupId> |
<artifactId>yasson</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.eclipse.persistence</groupId> |
<artifactId>javax.persistence</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.eclipse.persistence</groupId> |
<artifactId>org.eclipse.persistence.jpa</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.postgresql</groupId> |
<artifactId>postgresql</artifactId> |
</dependency> |
|
<dependency> |
<groupId>io.reactivex.rxjava2</groupId> |
<artifactId>rxjava</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.eclipse.persistence</groupId> |
<artifactId>org.eclipse.persistence.moxy</artifactId> |
</dependency> |
|
<dependency> |
<groupId>javax.servlet</groupId> |
<artifactId>javax.servlet-api</artifactId> |
</dependency> |
|
<dependency> |
<groupId>javax.activation</groupId> |
<artifactId>javax.activation-api</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.grizzly</groupId> |
<artifactId>grizzly-http-servlet</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.grizzly</groupId> |
<artifactId>grizzly-websockets</artifactId> |
</dependency> |
|
<dependency> |
<groupId>javax.websocket</groupId> |
<artifactId>javax.websocket-client-api</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.ext.cdi</groupId> |
<artifactId>jersey-weld2-se</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.core</groupId> |
<artifactId>jersey-common</artifactId> |
<exclusions> |
<exclusion> |
<groupId>org.glassfish.hk2.external</groupId> |
<artifactId>javax.inject</artifactId> |
</exclusion> |
</exclusions> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.containers</groupId> |
<artifactId>jersey-container-servlet</artifactId> |
<exclusions> |
<exclusion> |
<groupId>org.glassfish.hk2.external</groupId> |
<artifactId>javax.inject</artifactId> |
</exclusion> |
</exclusions> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.containers</groupId> |
<artifactId>jersey-container-servlet-core</artifactId> |
<version>2.26</version> |
<exclusions> |
<exclusion> |
<groupId>org.glassfish.hk2.external</groupId> |
<artifactId>javax.inject</artifactId> |
</exclusion> |
</exclusions> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.core</groupId> |
<artifactId>jersey-server</artifactId> |
<exclusions> |
<exclusion> |
<groupId>org.glassfish.hk2.external</groupId> |
<artifactId>javax.inject</artifactId> |
</exclusion> |
</exclusions> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.containers</groupId> |
<artifactId>jersey-container-grizzly2-http</artifactId> |
<exclusions> |
<exclusion> |
<groupId>org.glassfish.hk2.external</groupId> |
<artifactId>javax.inject</artifactId> |
</exclusion> |
</exclusions> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.core</groupId> |
<artifactId>jersey-client</artifactId> |
<exclusions> |
<exclusion> |
<groupId>org.glassfish.hk2.external</groupId> |
<artifactId>javax.inject</artifactId> |
</exclusion> |
</exclusions> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.media</groupId> |
<artifactId>jersey-media-sse</artifactId> |
<exclusions> |
<exclusion> |
<groupId>org.glassfish.hk2.external</groupId> |
<artifactId>javax.inject</artifactId> |
</exclusion> |
</exclusions> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.media</groupId> |
<artifactId>jersey-media-moxy</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.media</groupId> |
<artifactId>jersey-media-json-processing</artifactId> |
</dependency> |
|
<dependency> |
<groupId>org.glassfish.jersey.inject</groupId> |
<artifactId>jersey-hk2</artifactId> |
<exclusions> |
<exclusion> |
<groupId>org.glassfish.hk2.external</groupId> |
<artifactId>javax.inject</artifactId> |
</exclusion> |
</exclusions> |
</dependency> |
</dependencies>
|