Skip to content

Commit 774b265

Browse files
author
ahernandez
committed
Update documentation
Added parameters to #12
1 parent 2a65eff commit 774b265

File tree

1 file changed

+23
-11
lines changed

1 file changed

+23
-11
lines changed

README.md

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,12 @@ You have to be a fully utPLSQL environment available compatible with the Java AP
1111

1212
### Plugin Parameters
1313

14-
* `url`
14+
* `dbUrl`
1515
* URL of the Connection to the database
16-
* Default: `${dbURL}`
17-
* `user`
16+
* `dbUser`
1817
* Credential of the connection to the database
19-
* Default: `${dbUser}`
20-
* `password`
18+
* `dbPass`
2119
* Password of the connection to the database
22-
* Default: `${dbPass}`
2320
* `ignoreFailure`
2421
* Ignore or continue when a test fail
2522
* Default: `${maven.test.failure.ignore}`
@@ -34,10 +31,25 @@ You have to be a fully utPLSQL environment available compatible with the Java AP
3431

3532
* `paths`
3633
* Paths of the resources
37-
* `sources`
38-
* Sources of the scripts at the style of the maven resources
34+
* `sourcesRegexExpression`
35+
*
36+
* `sourcesOwnerSubexpression`
37+
*
38+
* `sourcesNameSubexpression`
39+
*
40+
* `sourcesTypeSubexpression`
41+
*
42+
3943
* `tests`
4044
* Test fo the scripts at the style of the maven resources
45+
* `testsRegexExpression`
46+
*
47+
* `testsOwnerSubexpression`
48+
*
49+
* `testsNameSubexpression`
50+
*
51+
* `testsTypeSubexpression`
52+
4153
* `targetDir`
4254
* Target dir, this is a readonly property
4355
* Default: `${project.build.directory}`
@@ -59,9 +71,9 @@ The next snippet is a sample of declaration of the pom
5971
<goal>test</goal>
6072
</goals>
6173
<configuration>
62-
<url>url_of_connection</url>
63-
<user>user</user>
64-
<password>password</password>
74+
<dbUrl>url_of_connection</dbUrl>
75+
<dbUser>user</dbUser>
76+
<dbPass>password</dbPass>
6577
<version>3.1.0</version>
6678
<failOnErrors>false</failOnErrors>
6779
<reporters>

0 commit comments

Comments
 (0)