Skip to content

Commit 354f417

Browse files
authored
Merge pull request #53 from utPLSQL/feature/classpath_fixes_and_ucp_removed
Feature/classpath fixes and ucp removed
2 parents fc410ef + ad4339d commit 354f417

File tree

4 files changed

+22
-8
lines changed

4 files changed

+22
-8
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,8 @@ deploy:
5858
branch: develop
5959

6060
notifications:
61-
slack: $SLACK_API_TOKEN
61+
slack:
62+
rooms:
63+
- secure: "jTPq4AcWQdWp1rB175c05ei/1lXZF1DBoqiKl9PPe7f8vqXS2QLPXMwGTEkZ1YnqL2MPZMB+50Gw5RhLKQ+t+9pN7ejLO0D8ULi1e96PDU5ZL5pNvRglH6U/lR5iT1CjELUuraDXDJ98Vu4gluLMiwTtFYQhNrOoA2V84L+8fF7rGjbGl4/zOXA9RQ4YAcOomJesb4vE7BCjhDjUuMW43xjNWg2s0WAiF+fC1HY/tsBMb1CGfpVULnO5ES5bKtUv/aGtySzH0vXilGDUvhZ/8mdaRn6uxpzcqrFdAyW8elSD28CypcYoxy6Myudw3SFiRPs0/Z02VXvm8DQtU/lcFEnaO7dMG+FpFhsWbrEjcRS6R7ve8uc7e/WuaQhtNVzSTOzRe+JFPGP9FOcYN+AcW2NJFILV9yT7+X/MPIB0OMxuwaPmVgtoyx0oec2nw05azmDr76P2e1XLnKtxa8ouwvPx8EMgApnXSR6VmLGu/w8nmtvIWjEAJ88cdGhwBagtyAsn2frzHq8aKpMziDRYvw4ivwGAeHJFsDtdRXzSbxhxmjl6+is3P0g0iAfojQ/Pzd4GugSYwqRQLLE7dUE0FAKXhKAAQAkjRZxik2+w6jgG8PuLuHdR4pm7C9srL+WAX8aFq/RQXE7BoIdqiZ5TMekw8d6eCRTjcRHsa3pPAd0="
64+
on_success: change
65+
on_failure: always

.travis/create_release.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ VERSION=`date +%Y%m%d%H%M`
66
mkdir dist
77
mv target/appassembler utPLSQL-cli
88
# Remove Oracle libraries du to licensing problems
9-
rm utPLSQL-cli/lib/ojdbc8*
10-
rm utPLSQL-cli/lib/orai18n*
9+
rm utPLSQL-cli/lib/ucp*.jar
10+
rm utPLSQL-cli/lib/ojdbc8*.jar
11+
rm utPLSQL-cli/lib/orai18n*.jar
1112

1213
zip -r -q dist/utPLSQL-cli-${TRAVIS_BRANCH}-${VERSION}.zip utPLSQL-cli
1314
zip -r -q utPLSQL-cli.zip utPLSQL-cli

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,27 @@ You can also download all development versions from [Bintray](https://bintray.co
1919
* [Java SE Runtime Environment 8](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html)
2020
* When using reporters for Sonar or Coveralls client needs to be invoked from project's root directory.
2121
* 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>
22-
* Oracle JDBC driver: http://www.oracle.com/technetwork/database/features/jdbc/jdbc-ucp-122-3110062.html
23-
* If you are on a 11g database you might need the orai18n library, too: http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html
22+
* Oracle `ojdbc8` driver
23+
* Oracle `ucp` library
24+
* If you are on a 11g database with non0standard NLS settings, you will also need the `orai18n` library.
25+
* All of the above can be downloaded from [Oracle download site](http://www.oracle.com/technetwork/database/features/jdbc/jdbc-ucp-122-3110062.html)
2426

2527
## Compatibility
2628
The latest CLI is always compatible with all database frameworks of the same major version.
2729
For example CLI-3.0.4 is compatible with database framework 3.0.0-3.0.4 but not with database framework 2.x.
2830

2931
## Usage
30-
utplsql run \<ConnectionURL\> [-p=(ut_path|ut_paths)] [-f=format [-o=output_file] [-s] ...]
32+
33+
`utplsql run <ConnectionURL> [-p=(ut_path|ut_paths)] [-f=format [-o=output_file] [-s] ...]`
3134

3235
```
33-
<ConnectionURL> - <user>/<password>@//<host>[:<port>]/<service> OR <user>/<password>@<TNSName> OR <user>/<password>@<host>:<port>:<SID>
34-
To connect using TNS, you need to have the ORACLE_HOME environment variable set.
36+
<ConnectionURL> - accepted formats:
37+
<user>/<password>@//<host>[:<port>]/<service>
38+
<user>/<password>@<host>:<port>:<SID>
39+
<user>/<password>@<TNSName>
40+
To connect using TNS, you need to have the ORACLE_HOME environment variable set.
41+
The file tnsnames.ora must exist in path %ORACLE_HOME%/network/admin
42+
The file tnsnames.ora must contain valid TNS entries.
3543
-p=suite_path(s) - A suite path or a comma separated list of suite paths for unit test to be executed.
3644
The path(s) can be in one of the following formats:
3745
schema[.package[.procedure]]

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
<version>1.10</version>
4646
<configuration>
4747
<copyConfigurationDirectory>true</copyConfigurationDirectory>
48+
<useWildcardClassPath>true</useWildcardClassPath>
4849
<configurationDirectory>etc</configurationDirectory>
4950
<repositoryName>lib</repositoryName>
5051
<repositoryLayout>flat</repositoryLayout>

0 commit comments

Comments
 (0)