|
13 | 13 | <properties> |
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | 15 | <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> |
18 | 21 | <travisBuildNumber>local</travisBuildNumber> |
19 | 22 | </properties> |
20 | 23 |
|
|
31 | 34 | <groupId>org.utplsql</groupId> |
32 | 35 | <artifactId>utplsql-java-api</artifactId> |
33 | 36 | <version>3.2.2</version> |
34 | | - <scope>compile</scope> |
35 | 37 | <exclusions> |
36 | 38 | <exclusion> |
37 | 39 | <groupId>com.oracle.ojdbc</groupId> |
|
55 | 57 | <dependency> |
56 | 58 | <groupId>ch.qos.logback</groupId> |
57 | 59 | <artifactId>logback-classic</artifactId> |
58 | | - <version>1.2.11</version> |
| 60 | + <version>${logback.version}</version> |
59 | 61 | </dependency> |
60 | 62 | <dependency> |
61 | 63 | <groupId>info.picocli</groupId> |
62 | 64 | <artifactId>picocli</artifactId> |
63 | | - <version>4.6.3</version> |
| 65 | + <version>${picocli.version}</version> |
64 | 66 | </dependency> |
65 | 67 | <dependency> |
66 | 68 | <groupId>com.oracle.database.jdbc</groupId> |
67 | | - <artifactId>ojdbc8</artifactId> |
| 69 | + <artifactId>ojdbc11</artifactId> |
68 | 70 | <version>${oracle.jdbc.version}</version> |
69 | | - <scope>compile</scope> |
70 | 71 | <exclusions> |
71 | 72 | <exclusion> |
72 | 73 | <groupId>com.oracle.database.jdbc</groupId> |
|
78 | 79 | <groupId>com.oracle.database.nls</groupId> |
79 | 80 | <artifactId>orai18n</artifactId> |
80 | 81 | <version>${oracle.jdbc.version}</version> |
81 | | - <scope>compile</scope> |
82 | 82 | </dependency> |
83 | 83 |
|
84 | 84 | <!-- Test --> |
|
91 | 91 | <dependency> |
92 | 92 | <groupId>org.hamcrest</groupId> |
93 | 93 | <artifactId>hamcrest</artifactId> |
94 | | - <version>2.1</version> |
| 94 | + <version>${hamcrest.version}</version> |
95 | 95 | <scope>test</scope> |
96 | 96 | </dependency> |
97 | 97 | </dependencies> |
|
101 | 101 | <plugin> |
102 | 102 | <groupId>org.codehaus.mojo</groupId> |
103 | 103 | <artifactId>appassembler-maven-plugin</artifactId> |
104 | | - <version>1.10</version> |
| 104 | + <version>2.1.0</version> |
105 | 105 | <configuration> |
106 | 106 | <copyConfigurationDirectory>true</copyConfigurationDirectory> |
107 | 107 | <useWildcardClassPath>true</useWildcardClassPath> |
|
119 | 119 | <plugin> |
120 | 120 | <groupId>org.apache.maven.plugins</groupId> |
121 | 121 | <artifactId>maven-surefire-plugin</artifactId> |
122 | | - <version>2.22.0</version> |
| 122 | + <version>3.5.5</version> |
123 | 123 | <configuration> |
124 | 124 | <excludes> |
125 | 125 | <exclude>**/*IT.java</exclude> |
|
129 | 129 | <plugin> |
130 | 130 | <groupId>org.apache.maven.plugins</groupId> |
131 | 131 | <artifactId>maven-failsafe-plugin</artifactId> |
132 | | - <version>2.22.0</version> |
| 132 | + <version>3.5.5</version> |
133 | 133 | <executions> |
134 | 134 | <execution> |
135 | 135 | <goals> |
|
142 | 142 | <plugin> |
143 | 143 | <groupId>org.apache.maven.plugins</groupId> |
144 | 144 | <artifactId>maven-assembly-plugin</artifactId> |
145 | | - <version>3.3.0</version> |
| 145 | + <version>3.8.0</version> |
146 | 146 | <configuration> |
147 | 147 | <finalName>utPLSQL-cli</finalName> |
148 | 148 | <appendAssemblyId>false</appendAssemblyId> |
|
154 | 154 | <plugin> |
155 | 155 | <groupId>net.nicoulaj.maven.plugins</groupId> |
156 | 156 | <artifactId>checksum-maven-plugin</artifactId> |
157 | | - <version>1.10</version> |
| 157 | + <version>1.11</version> |
158 | 158 | <configuration> |
159 | 159 | <fileSets> |
160 | 160 | <fileSet> |
|
172 | 172 | <plugin> |
173 | 173 | <groupId>com.amashchenko.maven.plugin</groupId> |
174 | 174 | <artifactId>gitflow-maven-plugin</artifactId> |
175 | | - <version>1.18.0</version> |
| 175 | + <version>1.21.0</version> |
176 | 176 | <configuration> |
177 | 177 | <verbose>true</verbose> |
178 | 178 | <gitFlowConfig> |
|
0 commit comments