From 56de074e30808f929ef93c683c445d8afa2f6a2b Mon Sep 17 00:00:00 2001 From: pesse Date: Wed, 28 Mar 2018 22:37:59 +0200 Subject: [PATCH 1/2] Use java-api release, not snapshot --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e0a36c5..2e9c16e 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ org.utplsql java-api - 3.1.0-SNAPSHOT + 3.1.0 compile From 83e31412c9d8e678e93bfee1af6c6dd2587ed6ec Mon Sep 17 00:00:00 2001 From: pesse Date: Wed, 28 Mar 2018 22:47:35 +0200 Subject: [PATCH 2/2] Updated documentation --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5aadbda..bdcb055 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,8 @@ You can also download all development versions from [Bintray](https://bintray.co * All of the above can be downloaded from [Oracle download site](http://www.oracle.com/technetwork/database/features/jdbc/jdbc-ucp-122-3110062.html) ## Compatibility -The latest CLI is always compatible with all database frameworks of the same minor version. -For example CLI-3.0.4 is compatible with database framework 3.0.0-3.0.4 but not with database framework 2.x and 3.1.x. +The latest CLI is always compatible with all database frameworks of the same major version. +For example CLI-3.1.0 is compatible with database framework 3.0.0-3.1.0 but not with database framework 2.x. ## Localization and NLS settings utPLSQL-cli will use the environment variables (in that order) "NLS_LANG", "LC_ALL" or "LANG" to change the locale and therefore the NLS settings. @@ -133,6 +133,14 @@ utplsql run hr/hr@xe Invokes all unit test suites from schema "hr". Results are displayed to screen using default ut_documentation_reporter. -##### Enabling Color Outputs on Windows +#### Enabling Color Outputs on Windows To enable color outputs on Windows cmd you need to install an open-source utility called [ANSICON](http://adoxa.altervista.org/ansicon/). + +## Custom Reporters + +Since v3.1.0 you can call custom reporters (PL/SQL) via cli, too. Just call the name of the custom reporter as you would do for the core reporters. + +``` +utplsql run hr/hr@xe -p=hr_test -f=my_custom_reporter -o=run.log -s +``` \ No newline at end of file