File tree Expand file tree Collapse file tree 2 files changed +49
-1
lines changed
java/org/utplsql/maven/plugin
resources/unit-tests/db_config_using_system_properties Expand file tree Collapse file tree 2 files changed +49
-1
lines changed Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ public void db_config_using_system_properties() throws Exception {
295
295
System .setProperty ("dbUser" , "UT3" );
296
296
System .setProperty ("dbPass" , "UT3" );
297
297
298
- UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo ("dbms_output " );
298
+ UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo ("db_config_using_system_properties " );
299
299
assertNotNull (utPlsqlMojo );
300
300
301
301
utPlsqlMojo .execute ();
Original file line number Diff line number Diff line change
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2
+ 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
+
6
+ <groupId >org.utplsql</groupId >
7
+ <artifactId >utplsql-maven-plugin-test</artifactId >
8
+ <version >3.1.0-SNAPSHOT</version >
9
+ <packaging >pom</packaging >
10
+
11
+ <build >
12
+ <plugins >
13
+ <plugin >
14
+ <groupId >org.utplsql</groupId >
15
+ <artifactId >utplsql-maven-plugin</artifactId >
16
+ <version >@proj</version >
17
+ <goals >
18
+ <goal >test</goal >
19
+ </goals >
20
+ <configuration >
21
+ <dbmsOutput >true</dbmsOutput >
22
+ <ignoreFailure >false</ignoreFailure >
23
+ <paths >
24
+ <path >app</path >
25
+ </paths >
26
+ <reporters >
27
+ <reporter >
28
+ <name >UT_DOCUMENTATION_REPORTER</name >
29
+ </reporter >
30
+ <reporter >
31
+ <name >UT_DOCUMENTATION_REPORTER</name >
32
+ <consoleOutput >false</consoleOutput >
33
+ </reporter >
34
+ <reporter >
35
+ <name >UT_COVERAGE_SONAR_REPORTER</name >
36
+ <fileOutput >coverage-sonar-report.xml</fileOutput >
37
+ </reporter >
38
+ <reporter >
39
+ <name >UT_SONAR_TEST_REPORTER</name >
40
+ <fileOutput >utplsql/sonar-test-report.xml</fileOutput >
41
+ <consoleOutput >true</consoleOutput >
42
+ </reporter >
43
+ </reporters >
44
+ </configuration >
45
+ </plugin >
46
+ </plugins >
47
+ </build >
48
+ </project >
You can’t perform that action at this time.
0 commit comments