Skip to content

Commit

Permalink
Update Jackson version and cleaned up pom dependencies and parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeheust committed Nov 14, 2024
1 parent d9a5601 commit 94317cc
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
25 changes: 15 additions & 10 deletions ojdbc-provider-jackson-oson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@

<artifactId>ojdbc-provider-jackson-oson</artifactId>
<properties>
<jackson-version>2.18.0</jackson-version>
<maven-model>3.6.3</maven-model>
<maven-surefire-plugin>2.22.0</maven-surefire-plugin>
<junit-jupiter>5.9.2</junit-jupiter>
<jackson-version>2.18.1</jackson-version>
</properties>

<dependencies>
Expand Down Expand Up @@ -44,16 +41,25 @@
<artifactId>jackson-annotations</artifactId>
<version>${jackson-version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson-version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.2</version>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson-version}</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
Expand All @@ -68,7 +74,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin}</version>
<configuration>
<systemPropertyVariables>
<groupId>${project.groupId}</groupId>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc-provider-common</artifactId>
Expand Down

0 comments on commit 94317cc

Please sign in to comment.