◐ Shell
clean mode source ↗

Update java version and library dependencies by jgebal · Pull Request #106 · utPLSQL/utPLSQL-java-api

Expand Up @@ -4,18 +4,18 @@
<groupId>org.utplsql</groupId> <artifactId>utplsql-java-api</artifactId> <version>3.1.17-SNAPSHOT</version> <version>3.2.01-SNAPSHOT</version>
<name>utPLSQL Java API</name> <description>Java API for running Unit Tests with utPLSQL v3+.</description> <url>https://github.com/utPLSQL/utPLSQL-java-api</url>
<properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <junit.jupiter.version>5.5.2</junit.jupiter.version> <oracle.jdbc.version>19.3.0.0</oracle.jdbc.version> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <junit.jupiter.version>5.12.2</junit.jupiter.version> <oracle.jdbc.version>23.7.0.25.01</oracle.jdbc.version>
<sonar.organization>utplsql</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> Expand Down Expand Up @@ -48,17 +48,17 @@ <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> <version>2.0.17</version> </dependency> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc8</artifactId> <version>19.3.0.0</version> <artifactId>ojdbc11</artifactId> <version>${oracle.jdbc.version}</version> </dependency> <dependency> <groupId>com.oracle.database.nls</groupId> <artifactId>orai18n</artifactId> <version>19.3.0.0</version> <version>${oracle.jdbc.version}</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> Expand All @@ -75,12 +75,14 @@ <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.1</version> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.0.0</version> <version>5.17.0</version> <scope>test</scope> </dependency> </dependencies>
Expand All @@ -92,14 +94,20 @@ </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.1.2</version> <version>3.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.3</version> <executions> <execution> <goals> Expand All @@ -109,10 +117,15 @@ </execution> </executions> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>5.1.0.4751</version> </plugin> <plugin> <groupId>com.amashchenko.maven.plugin</groupId> <artifactId>gitflow-maven-plugin</artifactId> <version>1.18.0</version> <version>1.21.0</version> <configuration> <verbose>true</verbose> <gitFlowConfig> Expand All @@ -131,7 +144,7 @@ <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.7</version> <version>0.8.13</version> <executions> <execution> <id>prepare-agent</id> Expand Down Expand Up @@ -162,7 +175,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> Expand All @@ -175,7 +188,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> Expand All @@ -189,7 +202,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> Expand Down