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 5656
5757 <maven .version>3.5.2</maven .version>
5858 <itf .version>0.11.0</itf .version>
59+ <junit .version>5.8.1</junit .version>
5960
6061 <sonar .organization>utplsql</sonar .organization>
6162 <sonar .host.url>https://sonarcloud.io</sonar .host.url>
6263 </properties >
6364
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-
7665 <dependencies >
7766 <dependency >
7867 <groupId >org.apache.maven</groupId >
127116 <dependency >
128117 <groupId >org.junit.jupiter</groupId >
129118 <artifactId >junit-jupiter-engine</artifactId >
119+ <version >${junit.version} </version >
130120 <scope >test</scope >
131121 </dependency >
132122 <dependency >
133123 <groupId >org.junit.vintage</groupId >
134124 <artifactId >junit-vintage-engine</artifactId >
125+ <version >${junit.version} </version >
126+ <scope >test</scope >
135127 </dependency >
136128
137129 <dependency >
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ void simple(MavenExecutionResult result) {
4343 void skip (MavenExecutionResult result ) {
4444 assertThat (result ).isSuccessful ();
4545
46+ assertThat (result .getMavenLog ()).info ().contains ("utPLSQLTests are skipped." );
47+
4648 assertThat (reportWasGenerated (result , "sonar-test-report.xml" )).isFalse ();
4749 }
4850
You can’t perform that action at this time.
0 commit comments