Skip to content

Commit 7128cf0

Browse files
author
Jacek Gębal
committed
Update pom dependencies
1 parent 2b07893 commit 7128cf0

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

pom.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@
1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<maven.compiler.release>11</maven.compiler.release>
16-
<junit.jupiter.version>5.5.2</junit.jupiter.version>
17-
<oracle.jdbc.version>21.9.0.0</oracle.jdbc.version>
16+
<junit.jupiter.version>5.12.2</junit.jupiter.version>
17+
<oracle.jdbc.version>21.18.0.0</oracle.jdbc.version>
18+
<picocli.version>4.7.7</picocli.version>
19+
<logback.version>1.2.11</logback.version>
20+
<hamcrest.version>2.2</hamcrest.version>
1821
<travisBuildNumber>local</travisBuildNumber>
1922
</properties>
2023

@@ -31,7 +34,6 @@
3134
<groupId>org.utplsql</groupId>
3235
<artifactId>utplsql-java-api</artifactId>
3336
<version>3.2.2</version>
34-
<scope>compile</scope>
3537
<exclusions>
3638
<exclusion>
3739
<groupId>com.oracle.ojdbc</groupId>
@@ -55,18 +57,17 @@
5557
<dependency>
5658
<groupId>ch.qos.logback</groupId>
5759
<artifactId>logback-classic</artifactId>
58-
<version>1.2.11</version>
60+
<version>${logback.version}</version>
5961
</dependency>
6062
<dependency>
6163
<groupId>info.picocli</groupId>
6264
<artifactId>picocli</artifactId>
63-
<version>4.6.3</version>
65+
<version>${picocli.version}</version>
6466
</dependency>
6567
<dependency>
6668
<groupId>com.oracle.database.jdbc</groupId>
67-
<artifactId>ojdbc8</artifactId>
69+
<artifactId>ojdbc11</artifactId>
6870
<version>${oracle.jdbc.version}</version>
69-
<scope>compile</scope>
7071
<exclusions>
7172
<exclusion>
7273
<groupId>com.oracle.database.jdbc</groupId>
@@ -78,7 +79,6 @@
7879
<groupId>com.oracle.database.nls</groupId>
7980
<artifactId>orai18n</artifactId>
8081
<version>${oracle.jdbc.version}</version>
81-
<scope>compile</scope>
8282
</dependency>
8383

8484
<!-- Test -->
@@ -91,7 +91,7 @@
9191
<dependency>
9292
<groupId>org.hamcrest</groupId>
9393
<artifactId>hamcrest</artifactId>
94-
<version>2.1</version>
94+
<version>${hamcrest.version}</version>
9595
<scope>test</scope>
9696
</dependency>
9797
</dependencies>
@@ -101,7 +101,7 @@
101101
<plugin>
102102
<groupId>org.codehaus.mojo</groupId>
103103
<artifactId>appassembler-maven-plugin</artifactId>
104-
<version>1.10</version>
104+
<version>2.1.0</version>
105105
<configuration>
106106
<copyConfigurationDirectory>true</copyConfigurationDirectory>
107107
<useWildcardClassPath>true</useWildcardClassPath>
@@ -119,7 +119,7 @@
119119
<plugin>
120120
<groupId>org.apache.maven.plugins</groupId>
121121
<artifactId>maven-surefire-plugin</artifactId>
122-
<version>2.22.0</version>
122+
<version>3.5.5</version>
123123
<configuration>
124124
<excludes>
125125
<exclude>**/*IT.java</exclude>
@@ -129,7 +129,7 @@
129129
<plugin>
130130
<groupId>org.apache.maven.plugins</groupId>
131131
<artifactId>maven-failsafe-plugin</artifactId>
132-
<version>2.22.0</version>
132+
<version>3.5.5</version>
133133
<executions>
134134
<execution>
135135
<goals>
@@ -142,7 +142,7 @@
142142
<plugin>
143143
<groupId>org.apache.maven.plugins</groupId>
144144
<artifactId>maven-assembly-plugin</artifactId>
145-
<version>3.3.0</version>
145+
<version>3.8.0</version>
146146
<configuration>
147147
<finalName>utPLSQL-cli</finalName>
148148
<appendAssemblyId>false</appendAssemblyId>
@@ -154,7 +154,7 @@
154154
<plugin>
155155
<groupId>net.nicoulaj.maven.plugins</groupId>
156156
<artifactId>checksum-maven-plugin</artifactId>
157-
<version>1.10</version>
157+
<version>1.11</version>
158158
<configuration>
159159
<fileSets>
160160
<fileSet>
@@ -172,7 +172,7 @@
172172
<plugin>
173173
<groupId>com.amashchenko.maven.plugin</groupId>
174174
<artifactId>gitflow-maven-plugin</artifactId>
175-
<version>1.18.0</version>
175+
<version>1.21.0</version>
176176
<configuration>
177177
<verbose>true</verbose>
178178
<gitFlowConfig>

0 commit comments

Comments
 (0)