Skip to content

Commit 9a0115c

Browse files
committed
Fixed wrong directory
1 parent dfdd18c commit 9a0115c

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ public void db_config_using_system_properties() throws Exception {
295295
System.setProperty("dbUser", "UT3");
296296
System.setProperty("dbPass", "UT3");
297297

298-
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo("dbms_output");
298+
UtPlsqlMojo utPlsqlMojo = createUtPlsqlMojo("db_config_using_system_properties");
299299
assertNotNull(utPlsqlMojo);
300300

301301
utPlsqlMojo.execute();
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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>

0 commit comments

Comments
 (0)