File tree Expand file tree Collapse file tree 2 files changed +53
-0
lines changed Expand file tree Collapse file tree 2 files changed +53
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ target/
20
20
.mvn
21
21
log.txt
22
22
** /pom.xml.versionsBackup
23
+ dependency-reduced-pom.xml
23
24
24
25
# Docs
25
26
doc /
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments