File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed
src/test/java/org/utplsql/maven/plugin Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 56
56
57
57
<maven .version>3.5.2</maven .version>
58
58
<itf .version>0.11.0</itf .version>
59
+ <junit .version>5.8.1</junit .version>
59
60
60
61
<sonar .organization>utplsql</sonar .organization>
61
62
<sonar .host.url>https://sonarcloud.io</sonar .host.url>
62
63
</properties >
63
64
64
- <dependencyManagement >
65
- <dependencies >
66
- <dependency >
67
- <groupId >org.junit</groupId >
68
- <artifactId >junit-bom</artifactId >
69
- <version >5.8.1</version >
70
- <type >pom</type >
71
- <scope >import</scope >
72
- </dependency >
73
- </dependencies >
74
- </dependencyManagement >
75
-
76
65
<dependencies >
77
66
<dependency >
78
67
<groupId >org.apache.maven</groupId >
127
116
<dependency >
128
117
<groupId >org.junit.jupiter</groupId >
129
118
<artifactId >junit-jupiter-engine</artifactId >
119
+ <version >${junit.version} </version >
130
120
<scope >test</scope >
131
121
</dependency >
132
122
<dependency >
133
123
<groupId >org.junit.vintage</groupId >
134
124
<artifactId >junit-vintage-engine</artifactId >
125
+ <version >${junit.version} </version >
126
+ <scope >test</scope >
135
127
</dependency >
136
128
137
129
<dependency >
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ void simple(MavenExecutionResult result) {
43
43
void skip (MavenExecutionResult result ) {
44
44
assertThat (result ).isSuccessful ();
45
45
46
+ assertThat (result .getMavenLog ()).info ().contains ("utPLSQLTests are skipped." );
47
+
46
48
assertThat (reportWasGenerated (result , "sonar-test-report.xml" )).isFalse ();
47
49
}
48
50
You can’t perform that action at this time.
0 commit comments