|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
2 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 |
|
6 | 6 | <groupId>org.utplsql</groupId>
|
7 | 7 | <artifactId>utplsql-maven-plugin</artifactId>
|
8 |
| - <version>3.1.3-SNAPSHOT</version> |
| 8 | + <version>3.2.0-SNAPSHOT</version> |
9 | 9 | <packaging>maven-plugin</packaging>
|
10 | 10 |
|
11 | 11 | <name>utPLSQL Maven Plugin</name>
|
|
26 | 26 | <organization>utPLSQL.org</organization>
|
27 | 27 | <organizationUrl>http://utplsql.org</organizationUrl>
|
28 | 28 | </developer>
|
| 29 | + <developer> |
| 30 | + <name>Simon Martinelli</name> |
| 31 | + <organization>utPLSQL.org</organization> |
| 32 | + <organizationUrl>http://utplsql.org</organizationUrl> |
| 33 | + </developer> |
29 | 34 | </developers>
|
30 | 35 |
|
31 | 36 | <scm>
|
|
45 | 50 | </distributionManagement>
|
46 | 51 |
|
47 | 52 | <properties>
|
| 53 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 54 | + <maven.compiler.source>1.8</maven.compiler.source> |
48 | 55 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
49 | 56 | <maven.version>3.5.2</maven.version>
|
50 |
| - <java.version>1.8</java.version> |
51 |
| - <powermock.version>2.0.0-beta.5</powermock.version> |
52 |
| - <ojdbc.version>19.3.0.0</ojdbc.version> |
| 57 | + <powermock.version>2.0.9</powermock.version> |
53 | 58 | <jaxb.version>2.3.1</jaxb.version>
|
54 | 59 | </properties>
|
55 | 60 |
|
56 | 61 | <dependencies>
|
57 | 62 | <dependency>
|
58 | 63 | <groupId>com.sun.xml.bind</groupId>
|
59 | 64 | <artifactId>jaxb-core</artifactId>
|
60 |
| - <version>2.3.0.1</version> |
| 65 | + <version>3.0.1</version> |
61 | 66 | </dependency>
|
62 | 67 |
|
63 | 68 | <dependency>
|
|
73 | 78 | </dependency>
|
74 | 79 |
|
75 | 80 | <dependency>
|
76 |
| - <groupId>com.oracle.ojdbc</groupId> |
| 81 | + <groupId>com.oracle.database.jdbc</groupId> |
77 | 82 | <artifactId>ojdbc8</artifactId>
|
78 |
| - <version>${ojdbc.version}</version> |
79 |
| - </dependency> |
80 |
| - |
81 |
| - <dependency> |
82 |
| - <groupId>com.oracle.ojdbc</groupId> |
83 |
| - <artifactId>orai18n</artifactId> |
84 |
| - <version>${ojdbc.version}</version> |
| 83 | + <version>21.3.0.0</version> |
85 | 84 | </dependency>
|
86 | 85 |
|
87 | 86 | <dependency>
|
|
118 | 117 | <dependency>
|
119 | 118 | <groupId>org.codehaus.plexus</groupId>
|
120 | 119 | <artifactId>plexus-utils</artifactId>
|
121 |
| - <version>3.3.0</version> |
| 120 | + <version>3.4.1</version> |
122 | 121 | </dependency>
|
123 | 122 |
|
124 | 123 | <!-- Test Dependencies -->
|
|
153 | 152 | <dependency>
|
154 | 153 | <groupId>org.assertj</groupId>
|
155 | 154 | <artifactId>assertj-core</artifactId>
|
156 |
| - <version>3.15.0</version> |
| 155 | + <version>3.21.0</version> |
157 | 156 | <scope>test</scope>
|
158 | 157 | </dependency>
|
159 | 158 |
|
160 | 159 | <dependency>
|
161 | 160 | <groupId>junit</groupId>
|
162 | 161 | <artifactId>junit</artifactId>
|
163 |
| - <version>4.13</version> |
| 162 | + <version>4.13.2</version> |
| 163 | + <scope>test</scope> |
| 164 | + </dependency> |
| 165 | + |
| 166 | + <dependency> |
| 167 | + <groupId>org.apache.maven.shared</groupId> |
| 168 | + <artifactId>maven-verifier</artifactId> |
| 169 | + <version>1.6</version> |
| 170 | + <scope>test</scope> |
| 171 | + </dependency> |
| 172 | + <dependency> |
| 173 | + <groupId>commons-io</groupId> |
| 174 | + <artifactId>commons-io</artifactId> |
| 175 | + <version>2.6</version> |
164 | 176 | <scope>test</scope>
|
165 | 177 | </dependency>
|
166 | 178 | </dependencies>
|
|
169 | 181 | <plugins>
|
170 | 182 | <plugin>
|
171 | 183 | <groupId>org.apache.maven.plugins</groupId>
|
172 |
| - <artifactId>maven-compiler-plugin</artifactId> |
173 |
| - <version>3.8.1</version> |
174 |
| - <configuration> |
175 |
| - <source>${java.version}</source> |
176 |
| - <target>${java.version}</target> |
177 |
| - <encoding>${project.build.sourceEncoding}</encoding> |
178 |
| - </configuration> |
| 184 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 185 | + <version>2.22.2</version> |
| 186 | + <executions> |
| 187 | + <execution> |
| 188 | + <goals> |
| 189 | + <goal>integration-test</goal> |
| 190 | + <goal>verify</goal> |
| 191 | + </goals> |
| 192 | + </execution> |
| 193 | + </executions> |
179 | 194 | </plugin>
|
180 | 195 | <plugin>
|
181 | 196 | <groupId>org.apache.maven.plugins</groupId>
|
|
220 | 235 | </execution>
|
221 | 236 | </executions>
|
222 | 237 | </plugin>
|
223 |
| - <plugin> |
224 |
| - <groupId>org.apache.maven.plugins</groupId> |
225 |
| - <artifactId>maven-surefire-plugin</artifactId> |
226 |
| - <version>2.21.0</version> |
227 |
| - <configuration> |
228 |
| - <skipTests>${skip.unit.tests}</skipTests> |
229 |
| - </configuration> |
230 |
| - </plugin> |
231 | 238 | <plugin>
|
232 | 239 | <groupId>com.amashchenko.maven.plugin</groupId>
|
233 | 240 | <artifactId>gitflow-maven-plugin</artifactId>
|
|
239 | 246 | <profiles>
|
240 | 247 | <profile>
|
241 | 248 | <id>release</id>
|
242 |
| - |
243 | 249 | <activation>
|
244 | 250 | <property>
|
245 | 251 | <name>release</name>
|
246 | 252 | </property>
|
247 | 253 | </activation>
|
248 |
| - |
249 | 254 | <build>
|
250 | 255 | <plugins>
|
251 | 256 | <plugin>
|
|
292 | 297 | </plugins>
|
293 | 298 | </build>
|
294 | 299 | </profile>
|
295 |
| - |
296 |
| - <profile> |
297 |
| - <id>integration</id> |
298 |
| - |
299 |
| - <activation> |
300 |
| - <property> |
301 |
| - <name>integration</name> |
302 |
| - </property> |
303 |
| - </activation> |
304 |
| - |
305 |
| - <properties> |
306 |
| - <skip.unit.tests>true</skip.unit.tests> |
307 |
| - </properties> |
308 |
| - |
309 |
| - <dependencies> |
310 |
| - <dependency> |
311 |
| - <groupId>org.apache.maven.shared</groupId> |
312 |
| - <artifactId>maven-verifier</artifactId> |
313 |
| - <version>1.6</version> |
314 |
| - <scope>test</scope> |
315 |
| - </dependency> |
316 |
| - <dependency> |
317 |
| - <groupId>commons-io</groupId> |
318 |
| - <artifactId>commons-io</artifactId> |
319 |
| - <version>2.6</version> |
320 |
| - <scope>test</scope> |
321 |
| - </dependency> |
322 |
| - </dependencies> |
323 |
| - |
324 |
| - <build> |
325 |
| - <plugins> |
326 |
| - <plugin> |
327 |
| - <groupId>org.codehaus.mojo</groupId> |
328 |
| - <artifactId>build-helper-maven-plugin</artifactId> |
329 |
| - <version>3.0.0</version> |
330 |
| - <executions> |
331 |
| - <execution> |
332 |
| - <id>add-it-source</id> |
333 |
| - <phase>generate-test-sources</phase> |
334 |
| - <goals> |
335 |
| - <goal>add-test-source</goal> |
336 |
| - </goals> |
337 |
| - <configuration> |
338 |
| - <sources> |
339 |
| - <directory>src/it/java</directory> |
340 |
| - </sources> |
341 |
| - </configuration> |
342 |
| - </execution> |
343 |
| - <execution> |
344 |
| - <id>add-it-resource</id> |
345 |
| - <phase>generate-resources</phase> |
346 |
| - <goals> |
347 |
| - <goal>add-test-resource</goal> |
348 |
| - </goals> |
349 |
| - <configuration> |
350 |
| - <resources> |
351 |
| - <resource> |
352 |
| - <directory>src/it/resources</directory> |
353 |
| - </resource> |
354 |
| - </resources> |
355 |
| - </configuration> |
356 |
| - </execution> |
357 |
| - </executions> |
358 |
| - </plugin> |
359 |
| - <plugin> |
360 |
| - <groupId>org.apache.maven.plugins</groupId> |
361 |
| - <artifactId>maven-failsafe-plugin</artifactId> |
362 |
| - <version>2.22.2</version> |
363 |
| - <executions> |
364 |
| - <execution> |
365 |
| - <goals> |
366 |
| - <goal>integration-test</goal> |
367 |
| - <goal>verify</goal> |
368 |
| - </goals> |
369 |
| - </execution> |
370 |
| - </executions> |
371 |
| - </plugin> |
372 |
| - </plugins> |
373 |
| - </build> |
374 |
| - </profile> |
375 | 300 | </profiles>
|
376 | 301 |
|
377 | 302 | <repositories>
|
|
0 commit comments