Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b429b4b

Browse files
authoredOct 20, 2019
Merge pull request #166 from utPLSQL/public-jdbc-driver
Use new public jdbc driver available one maven central
2 parents 6cc7d81 + b11c27f commit b429b4b

File tree

3 files changed

+9
-30
lines changed

3 files changed

+9
-30
lines changed
 

‎.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
- docker
66

77
jdk:
8-
- oraclejdk8
8+
- openjdk8
99

1010
env:
1111
global:

‎README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Provides an easy way of invoking utPLSQL from command-line. Main features:
1111
* Ability to run tests with multiple reporters simultaneously.
1212
* Ability to save output from every individual reporter to a separate output file.
1313
* Allows execution of selected suites, subset of suite.
14-
* Maps project and test files to database objects for reporting purposes. (Comming Soon)
14+
* Maps project and test files to database objects for reporting purposes. (Coming Soon)
1515

1616
## Downloading
1717

@@ -23,10 +23,6 @@ You can also download all development versions from [Bintray](https://bintray.co
2323
## Requirements
2424
* [Java SE Runtime Environment 8](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html)
2525
* When using reporters for Sonar or Coveralls client needs to be invoked from project's root directory.
26-
* Due to Oracle license we can't ship the necessary oracle libraries directly with utPLSQL-cli. <b>Please download the libraries directly from oracle website and put the jars into the "lib" folder of your utPLSQL-cli installation</b>
27-
* Oracle `ojdbc8` driver
28-
* It is highly recommended that you also use the `orai18n` library, especially if you use a charset different than UTF-16 or are on Oracle 11g.
29-
* All of the above can be downloaded from [Oracle download site](http://www.oracle.com/technetwork/database/features/jdbc/jdbc-ucp-122-3110062.html)
3026

3127
## Compatibility
3228
The latest CLI is always compatible with all database frameworks of the same major version.

‎pom.xml

Lines changed: 7 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<maven.compiler.source>1.8</maven.compiler.source>
1616
<maven.compiler.target>1.8</maven.compiler.target>
17-
<junit.jupiter.version>5.4.0</junit.jupiter.version>
17+
<junit.jupiter.version>5.5.2</junit.jupiter.version>
18+
<oracle.jdbc.version>19.3.0.0</oracle.jdbc.version>
1819
<travisBuildNumber>local</travisBuildNumber>
1920
</properties>
2021

@@ -55,21 +56,21 @@
5556
<version>4.0.0-beta-1b</version>
5657
</dependency>
5758
<dependency>
58-
<groupId>com.oracle.jdbc</groupId>
59+
<groupId>com.oracle.ojdbc</groupId>
5960
<artifactId>ojdbc8</artifactId>
60-
<version>12.2.0.1</version>
61+
<version>${oracle.jdbc.version}</version>
6162
<scope>compile</scope>
6263
<exclusions>
6364
<exclusion>
64-
<groupId>com.oracle.jdbc</groupId>
65+
<groupId>com.oracle.ojdbc</groupId>
6566
<artifactId>ucp</artifactId>
6667
</exclusion>
6768
</exclusions>
6869
</dependency>
6970
<dependency>
70-
<groupId>com.oracle.jdbc</groupId>
71+
<groupId>com.oracle.ojdbc</groupId>
7172
<artifactId>orai18n</artifactId>
72-
<version>12.2.0.1</version>
73+
<version>${oracle.jdbc.version}</version>
7374
<scope>compile</scope>
7475
</dependency>
7576

@@ -164,26 +165,8 @@
164165
<enabled>true</enabled>
165166
</snapshots>
166167
</repository>
167-
<repository>
168-
<id>maven.oracle.com</id>
169-
<releases>
170-
<enabled>true</enabled>
171-
</releases>
172-
<snapshots>
173-
<enabled>false</enabled>
174-
</snapshots>
175-
<url>https://maven.oracle.com</url>
176-
<layout>default</layout>
177-
</repository>
178168
</repositories>
179169

180-
<pluginRepositories>
181-
<pluginRepository>
182-
<id>maven.oracle.com</id>
183-
<url>https://maven.oracle.com</url>
184-
</pluginRepository>
185-
</pluginRepositories>
186-
187170
<profiles>
188171
<profile>
189172
<id>utPLSQL-local</id>

0 commit comments

Comments
 (0)
Please sign in to comment.