Skip to content

Commit

Permalink
update maven dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bertramn committed Oct 22, 2023
1 parent 0efb01a commit c23a174
Showing 1 changed file with 32 additions and 33 deletions.
65 changes: 32 additions & 33 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,28 +71,27 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.release>8</maven.compiler.release>
<jakarta-api.version>2.3.3</jakarta-api.version>
<jaxb.version>2.3.8</jaxb.version>
<jaxb.plugin.version>2.0.9</jaxb.plugin.version>
<jackson.version>2.15.2</jackson.version>
<slf4j.version>1.7.26</slf4j.version>
<logback.version>1.2.3</logback.version>
<junit.version>4.12</junit.version>
<jaxb.version>2.3.9</jaxb.version>
<jaxb.plugin.version>2.0.9</jaxb.plugin.version>
<slf4j.version>1.7.36</slf4j.version>
<logback.version>1.4.11</logback.version>
<junit.version>5.10.0</junit.version>
</properties>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb2-basics-tools</artifactId>
</dependency>
<!-- region xjc -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -106,6 +105,10 @@
<scope>provided</scope>
</dependency>
<!-- endregion -->
<dependency>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb2-basics-tools</artifactId>
</dependency>
<!-- region logging dependencies -->
<dependency>
<groupId>org.slf4j</groupId>
Expand All @@ -118,8 +121,8 @@
<!-- endregion -->
<!-- region testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -154,25 +157,19 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta-api.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-xjc</artifactId>
<artifactId>jaxb-bom</artifactId>
<version>${jaxb.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>codemodel</artifactId>
<version>${jaxb.version}</version>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.jvnet.jaxb</groupId>
Expand Down Expand Up @@ -245,25 +242,28 @@
</dependency>
<!-- endregion -->
<!-- region testing dependencies -->

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-core</artifactId>
<version>3.13.9</version>
<version>3.25.5</version>
</dependency>
<dependency>
<groupId>javax.money</groupId>
<artifactId>money-api</artifactId>
<version>1.0.3</version>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.javamoney.moneta</groupId>
<artifactId>moneta-core</artifactId>
<version>1.3</version>
<version>1.4.2</version>
</dependency>
<!-- endregion -->
<!-- region interop testing -->
Expand All @@ -277,7 +277,6 @@
<artifactId>jaxb-basics-annotate</artifactId>
<version>${jaxb.plugin.version}</version>
</dependency>

<dependency>
<groupId>com.github.fbdo</groupId>
<artifactId>jaxb2-fixed-value</artifactId>
Expand Down

0 comments on commit c23a174

Please sign in to comment.