File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ before_install:
7474install :
7575 # - unzip utPLSQL.zip
7676 - unzip utPLSQL-cli.zip && chmod -R u+x utPLSQL-cli
77+ - mvn dependency:copy-dependencies -DoutputDirectory=utPLSQL-cli/lib
7778 - pip install mkdocs
7879 - bash .travis/install_sqlcl.sh
7980 - sudo mkdir -p /dev/pdbs
Original file line number Diff line number Diff line change 1+ <!-- Used to obtain ojdbc8 and orai18n files that are needed for client-->
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" 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+ <modelVersion >4.0.0</modelVersion >
5+ <groupId >org.utplsql</groupId >
6+ <artifactId >utplsql</artifactId >
7+ <version >3.0.4-SNAPSHOT</version >
8+ <packaging >jar</packaging >
9+
10+ <name >utPLSQL</name >
11+ <url >https://github.com/utPLSQL/utPLSQL</url >
12+
13+ <properties >
14+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15+ </properties >
16+
17+ <dependencies >
18+ <dependency >
19+ <groupId >com.oracle.jdbc</groupId >
20+ <artifactId >ojdbc8</artifactId >
21+ <version >12.2.0.1</version >
22+ <scope >compile</scope >
23+ </dependency >
24+ <dependency >
25+ <groupId >com.oracle.jdbc</groupId >
26+ <artifactId >orai18n</artifactId >
27+ <version >12.2.0.1</version >
28+ <scope >compile</scope >
29+ </dependency >
30+ </dependencies >
31+ </project >
You can’t perform that action at this time.
0 commit comments