|
5 | 5 |
|
6 | 6 | <groupId>org.utplsql</groupId>
|
7 | 7 | <artifactId>utplsql-maven-plugin</artifactId>
|
8 |
| - <version>3.1.2-SNAPSHOT</version> |
| 8 | + <version>3.1.3-SNAPSHOT</version> |
9 | 9 | <packaging>maven-plugin</packaging>
|
10 | 10 |
|
11 | 11 | <name>utPLSQL Maven Plugin</name>
|
|
49 | 49 | <maven.version>3.5.0</maven.version>
|
50 | 50 | <java.version>1.8</java.version>
|
51 | 51 | <powermock.version>1.7.4</powermock.version>
|
| 52 | + <ojdbc.version>12.2.0.1</ojdbc.version> |
52 | 53 | </properties>
|
53 | 54 |
|
54 | 55 | <dependencies>
|
| 56 | + <dependency> |
| 57 | + <groupId>com.oracle.jdbc</groupId> |
| 58 | + <artifactId>ojdbc8</artifactId> |
| 59 | + <version>${ojdbc.version}</version> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <dependency> |
| 63 | + <groupId>com.oracle.jdbc</groupId> |
| 64 | + <artifactId>orai18n</artifactId> |
| 65 | + <version>${ojdbc.version}</version> |
| 66 | + </dependency> |
| 67 | + |
55 | 68 | <dependency>
|
56 | 69 | <groupId>org.utplsql</groupId>
|
57 | 70 | <artifactId>java-api</artifactId>
|
|
145 | 158 | <encoding>${project.build.sourceEncoding}</encoding>
|
146 | 159 | </configuration>
|
147 | 160 | </plugin>
|
| 161 | + <plugin> |
| 162 | + <groupId>org.apache.maven.plugins</groupId> |
| 163 | + <artifactId>maven-shade-plugin</artifactId> |
| 164 | + <version>2.1</version> |
| 165 | + <executions> |
| 166 | + <execution> |
| 167 | + <phase>package</phase> |
| 168 | + <goals> |
| 169 | + <goal>shade</goal> |
| 170 | + </goals> |
| 171 | + </execution> |
| 172 | + </executions> |
| 173 | + <configuration> |
| 174 | + <artifactSet> |
| 175 | + <includes> |
| 176 | + <include>org.utplsql:java-api</include> |
| 177 | + </includes> |
| 178 | + </artifactSet> |
| 179 | + </configuration> |
| 180 | + </plugin> |
148 | 181 | <plugin>
|
149 | 182 | <groupId>org.apache.maven.plugins</groupId>
|
150 | 183 | <artifactId>maven-plugin-plugin</artifactId>
|
|
327 | 360 | <enabled>true</enabled>
|
328 | 361 | </snapshots>
|
329 | 362 | </repository>
|
| 363 | + |
| 364 | + <repository> |
| 365 | + <id>maven.oracle.com</id> |
| 366 | + <releases> |
| 367 | + <enabled>true</enabled> |
| 368 | + </releases> |
| 369 | + <snapshots> |
| 370 | + <enabled>false</enabled> |
| 371 | + </snapshots> |
| 372 | + <url>https://maven.oracle.com</url> |
| 373 | + <layout>default</layout> |
| 374 | + </repository> |
330 | 375 | </repositories>
|
| 376 | + |
| 377 | + <pluginRepositories> |
| 378 | + <pluginRepository> |
| 379 | + <id>maven.oracle.com</id> |
| 380 | + <url>https://maven.oracle.com</url> |
| 381 | + </pluginRepository> |
| 382 | + </pluginRepositories> |
331 | 383 | </project>
|
0 commit comments