You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The next snippet is a sample of declaration of the pom
64
99
```xml
65
100
<plugin>
66
101
<groupId>org.utplsql</groupId>
67
102
<artifactId>utplsql-maven-plugin</artifactId>
68
-
<version>1.0.0-SNAPSHOT</version>
103
+
<version>3.1.0</version>
69
104
<goals>
70
105
<goal>test</goal>
71
106
</goals>
72
107
<configuration>
73
108
<dbUrl>url_of_connection</dbUrl>
74
109
<dbUser>user</dbUser>
75
110
<dbPass>password</dbPass>
76
-
<failOnErrors>false</failOnErrors>
111
+
<ignoreFailure>false</ignoreFailure>
112
+
<paths>
113
+
<path>schema_name</path>
114
+
</paths>
77
115
<reporters>
78
116
<reporter>
79
117
<name>UT_COVERAGE_SONAR_REPORTER</name>
@@ -115,3 +153,5 @@ More project samples are available in the src/test/resources directory :
115
153
* simple-project : minimalist test project with standard project directory structure
116
154
* regex-project : override project directory structure and use additional parameters (sourcesRegexExpression, testsRegexExpression, ...) to tell utPLSQL how the project files are to be mapped into database objects.
117
155
* type-mapping-project : This project shows how to use regex and custom type parameters togethers.
156
+
* owner-param-project : This project demonstrates how to use sourcesOwner and testsOwner parameters.
0 commit comments