Skip to content

Commit

Permalink
Add javax dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kathy-t committed Nov 16, 2023
1 parent 7ecc31a commit dd1d74b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
5 changes: 4 additions & 1 deletion THIRD-PARTY-LICENSES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Lists of 402 third-party dependencies.
Lists of 405 third-party dependencies.
(Apache License, Version 2.0) akka-actor (com.typesafe.akka:akka-actor_2.13:2.5.32 - https://akka.io/)
(Apache License, Version 2.0) akka-protobuf (com.typesafe.akka:akka-protobuf_2.13:2.5.32 - https://akka.io/)
(Apache License, Version 2.0) akka-slf4j (com.typesafe.akka:akka-slf4j_2.13:2.5.32 - https://akka.io/)
Expand Down Expand Up @@ -227,10 +227,13 @@ Lists of 402 third-party dependencies.
(The MIT License) Java SemVer (com.github.zafarkhaja:java-semver:0.9.0 - https://github.com/zafarkhaja/jsemver)
(The Apache Software License, Version 2.0) java-diff-utils (io.github.java-diff-utils:java-diff-utils:4.12 - https://github.com/java-diff-utils/java-diff-utils/java-diff-utils)
(CDDL/GPLv2+CE) JavaBeans Activation Framework (com.sun.activation:javax.activation:1.2.0 - http://java.net/all/javax.activation/)
(CDDL/GPLv2+CE) JavaBeans Activation Framework API jar (javax.activation:javax.activation-api:1.2.0 - http://java.net/all/javax.activation-api/)
(Apache License 2.0) (LGPL 2.1) (MPL 1.1) Javassist (org.javassist:javassist:3.29.2-GA - http://www.javassist.org/)
(CDDL + GPLv2 with classpath exception) javax.annotation API (javax.annotation:javax.annotation-api:1.3.2 - http://jcp.org/en/jsr/detail?id=250)
(EPL 2.0) (GPL2 w/ CPE) javax.ws.rs-api (javax.ws.rs:javax.ws.rs-api:2.1.1 - https://github.com/eclipse-ee4j/jaxrs-api)
(Eclipse Distribution License - v 1.0) JAXB Core (org.glassfish.jaxb:jaxb-core:3.0.2 - https://eclipse-ee4j.github.io/jaxb-ri/)
(Eclipse Distribution License - v 1.0) JAXB Runtime (org.glassfish.jaxb:jaxb-runtime:3.0.2 - https://eclipse-ee4j.github.io/jaxb-ri/)
(CDDL 1.1) (GPL2 w/ CPE) jaxb-api (javax.xml.bind:jaxb-api:2.3.1 - https://github.com/javaee/jaxb-spec/jaxb-api)
(Apache License, version 2.0) JBoss Logging 3 (org.jboss.logging:jboss-logging:3.4.3.Final - http://www.jboss.org)
(Apache License, Version 2.0) JCL 1.2 implemented over SLF4J (org.slf4j:jcl-over-slf4j:2.0.7 - http://www.slf4j.org)
(Apache License, Version 2.0) jcommander (com.beust:jcommander:1.82 - https://jcommander.org)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
<!-- see https://github.com/dropwizard/dropwizard/pull/3069 -->
<exclude>javax.annotation:javax.annotation-api</exclude>
<exclude>javax.activation:activation</exclude>
<exclude>javax.ws.rs:javax.ws.rs-api</exclude>
<!-- still used by toolbackup <exclude>javax.ws.rs:javax.ws.rs-api</exclude> -->
<!-- Replaced with jakarta.activation:jakarta.activation-api -->
<exclude>javax.activation:javax.activation-api</exclude>
<!-- Replaced with jakarta.servlet:jakarta.servlet-api -->
Expand Down
13 changes: 10 additions & 3 deletions toolbackup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,14 @@
<artifactId>hk2-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -353,7 +359,8 @@
<ignoreNonCompile>true</ignoreNonCompile>
<usedDependencies>
<usedDependency>org.glassfish.hk2:hk2-api</usedDependency>
<usedDependency>jakarta.xml.bind:jakarta.xml.bind-api</usedDependency>
<usedDependency>javax.xml.bind:jaxb-api</usedDependency>
<usedDependency>javax.ws.rs:javax.ws.rs-api</usedDependency>
</usedDependencies>
</configuration>
</execution>
Expand Down

0 comments on commit dd1d74b

Please sign in to comment.