|
4 | 4 |
|
5 | 5 | <groupId>org.utplsql</groupId> |
6 | 6 | <artifactId>cli</artifactId> |
7 | | - <version>3.1.10-SNAPSHOT</version> |
| 7 | + <version>3.2.0-SNAPSHOT</version> |
8 | 8 |
|
9 | 9 | <name>utPLSQL CLI</name> |
10 | 10 | <description>CLI for running Unit Tests with utPLSQL v3+.</description> |
11 | 11 | <url>https://github.com/utPLSQL/utPLSQL-cli</url> |
12 | 12 |
|
13 | 13 | <properties> |
| 14 | + <utplsql-java-api.version>3.2.3</utplsql-java-api.version> |
14 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | 16 | <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> |
| 17 | + <junit.jupiter.version>5.12.2</junit.jupiter.version> |
| 18 | + <picocli.version>4.7.7</picocli.version> |
| 19 | + <logback.version>1.5.18</logback.version> |
| 20 | + <hamcrest.version>2.2</hamcrest.version> |
18 | 21 | <travisBuildNumber>local</travisBuildNumber> |
| 22 | + |
| 23 | + <sonar.organization>utplsql</sonar.organization> |
| 24 | + <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
19 | 25 | </properties> |
20 | 26 |
|
21 | 27 | <licenses> |
|
26 | 32 | </license> |
27 | 33 | </licenses> |
28 | 34 |
|
| 35 | + <issueManagement> |
| 36 | + <system>GitHub Issues</system> |
| 37 | + <url>https://github.com/utPLSQL/utPLSQL-java-api/issues</url> |
| 38 | + </issueManagement> |
| 39 | + |
| 40 | + <developers> |
| 41 | + <developer> |
| 42 | + <name>Vinicius Avellar Moreira</name> |
| 43 | + <organization>utPLSQL.org</organization> |
| 44 | + <organizationUrl>https://utplsql.org</organizationUrl> |
| 45 | + <email>amvinicius@gmail.com</email> |
| 46 | + </developer> |
| 47 | + <developer> |
| 48 | + <name>Samuel Nitsche</name> |
| 49 | + <organization>utPLSQL.org</organization> |
| 50 | + <organizationUrl>https://utplsql.org</organizationUrl> |
| 51 | + <email>derpesse@gmail.com</email> |
| 52 | + </developer> |
| 53 | + <developer> |
| 54 | + <name>Jacek Gebal</name> |
| 55 | + <organization>utPLSQL.org</organization> |
| 56 | + <organizationUrl>https://utplsql.org</organizationUrl> |
| 57 | + <email>jgebal@gmail.com</email> |
| 58 | + </developer> |
| 59 | + <developer> |
| 60 | + <name>Simon Martinelli</name> |
| 61 | + <organization>utPLSQL.org</organization> |
| 62 | + <organizationUrl>https://utplsql.org</organizationUrl> |
| 63 | + <email>simon@martineli.ch</email> |
| 64 | + <url>https://martinelli.ch</url> |
| 65 | + </developer> |
| 66 | + </developers> |
| 67 | + |
29 | 68 | <dependencies> |
30 | 69 | <dependency> |
31 | 70 | <groupId>org.utplsql</groupId> |
32 | | - <artifactId>java-api</artifactId> |
33 | | - <version>3.1.9</version> |
34 | | - <scope>compile</scope> |
35 | | - <exclusions> |
36 | | - <exclusion> |
37 | | - <groupId>com.oracle.ojdbc</groupId> |
38 | | - <artifactId>ucp</artifactId> |
39 | | - </exclusion> |
40 | | - <exclusion> |
41 | | - <groupId>com.oracle.ojdbc</groupId> |
42 | | - <artifactId>ojdbc8</artifactId> |
43 | | - </exclusion> |
44 | | - <exclusion> |
45 | | - <groupId>com.oracle.ojdbc</groupId> |
46 | | - <artifactId>orai18n</artifactId> |
47 | | - </exclusion> |
48 | | - </exclusions> |
| 71 | + <artifactId>utplsql-java-api</artifactId> |
| 72 | + <version>${utplsql-java-api.version}</version> |
49 | 73 | </dependency> |
50 | 74 | <dependency> |
51 | 75 | <groupId>javax.xml.bind</groupId> |
|
55 | 79 | <dependency> |
56 | 80 | <groupId>ch.qos.logback</groupId> |
57 | 81 | <artifactId>logback-classic</artifactId> |
58 | | - <version>1.2.13</version> |
| 82 | + <version>${logback.version}</version> |
59 | 83 | </dependency> |
60 | 84 | <dependency> |
61 | 85 | <groupId>info.picocli</groupId> |
62 | 86 | <artifactId>picocli</artifactId> |
63 | | - <version>4.6.3</version> |
| 87 | + <version>${picocli.version}</version> |
64 | 88 | </dependency> |
65 | | - <dependency> |
66 | | - <groupId>com.oracle.database.jdbc</groupId> |
67 | | - <artifactId>ojdbc8</artifactId> |
68 | | - <version>${oracle.jdbc.version}</version> |
69 | | - <scope>compile</scope> |
70 | | - <exclusions> |
71 | | - <exclusion> |
72 | | - <groupId>com.oracle.database.jdbc</groupId> |
73 | | - <artifactId>ucp</artifactId> |
74 | | - </exclusion> |
75 | | - </exclusions> |
76 | | - </dependency> |
77 | | - <dependency> |
78 | | - <groupId>com.oracle.database.nls</groupId> |
79 | | - <artifactId>orai18n</artifactId> |
80 | | - <version>${oracle.jdbc.version}</version> |
81 | | - <scope>compile</scope> |
82 | | - </dependency> |
83 | | - |
84 | 89 | <!-- Test --> |
85 | 90 | <dependency> |
86 | 91 | <groupId>org.junit.jupiter</groupId> |
|
91 | 96 | <dependency> |
92 | 97 | <groupId>org.hamcrest</groupId> |
93 | 98 | <artifactId>hamcrest</artifactId> |
94 | | - <version>2.1</version> |
| 99 | + <version>${hamcrest.version}</version> |
95 | 100 | <scope>test</scope> |
96 | 101 | </dependency> |
97 | 102 | </dependencies> |
98 | 103 |
|
99 | 104 | <build> |
100 | 105 | <plugins> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-compiler-plugin</artifactId> |
| 109 | + <version>3.13.0</version> |
| 110 | + </plugin> |
101 | 111 | <plugin> |
102 | 112 | <groupId>org.codehaus.mojo</groupId> |
103 | 113 | <artifactId>appassembler-maven-plugin</artifactId> |
104 | | - <version>1.10</version> |
| 114 | + <version>2.1.0</version> |
105 | 115 | <configuration> |
106 | 116 | <copyConfigurationDirectory>true</copyConfigurationDirectory> |
107 | 117 | <useWildcardClassPath>true</useWildcardClassPath> |
|
119 | 129 | <plugin> |
120 | 130 | <groupId>org.apache.maven.plugins</groupId> |
121 | 131 | <artifactId>maven-surefire-plugin</artifactId> |
122 | | - <version>2.22.0</version> |
| 132 | + <version>3.5.5</version> |
123 | 133 | <configuration> |
124 | 134 | <excludes> |
125 | 135 | <exclude>**/*IT.java</exclude> |
|
129 | 139 | <plugin> |
130 | 140 | <groupId>org.apache.maven.plugins</groupId> |
131 | 141 | <artifactId>maven-failsafe-plugin</artifactId> |
132 | | - <version>2.22.0</version> |
| 142 | + <version>3.5.5</version> |
133 | 143 | <executions> |
134 | 144 | <execution> |
135 | 145 | <goals> |
|
142 | 152 | <plugin> |
143 | 153 | <groupId>org.apache.maven.plugins</groupId> |
144 | 154 | <artifactId>maven-assembly-plugin</artifactId> |
145 | | - <version>3.3.0</version> |
| 155 | + <version>3.8.0</version> |
146 | 156 | <configuration> |
147 | 157 | <finalName>utPLSQL-cli</finalName> |
148 | 158 | <appendAssemblyId>false</appendAssemblyId> |
|
154 | 164 | <plugin> |
155 | 165 | <groupId>net.nicoulaj.maven.plugins</groupId> |
156 | 166 | <artifactId>checksum-maven-plugin</artifactId> |
157 | | - <version>1.10</version> |
| 167 | + <version>1.11</version> |
158 | 168 | <configuration> |
159 | 169 | <fileSets> |
160 | 170 | <fileSet> |
|
172 | 182 | <plugin> |
173 | 183 | <groupId>com.amashchenko.maven.plugin</groupId> |
174 | 184 | <artifactId>gitflow-maven-plugin</artifactId> |
175 | | - <version>1.18.0</version> |
| 185 | + <version>1.21.0</version> |
176 | 186 | <configuration> |
177 | 187 | <verbose>true</verbose> |
178 | 188 | <gitFlowConfig> |
|
201 | 211 |
|
202 | 212 | <repositories> |
203 | 213 | <repository> |
204 | | - <id>utplsql-java-api</id> |
205 | | - <url> |
206 | | - https://packagecloud.io/utplsql/utplsql-java-api/maven2 |
207 | | - </url> |
208 | | - <releases> |
209 | | - <enabled>true</enabled> |
210 | | - </releases> |
211 | | - <snapshots> |
212 | | - <enabled>true</enabled> |
213 | | - </snapshots> |
| 214 | + <id>central-snapshots</id> |
| 215 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
| 216 | + <snapshots><enabled>true</enabled></snapshots> |
214 | 217 | </repository> |
215 | 218 | </repositories> |
216 | 219 |
|
|
0 commit comments