Commit 11bbdc9 1 parent 1f0c261 commit 11bbdc9 Copy full SHA for 11bbdc9
File tree 3 files changed +17
-1
lines changed
java/org/apache/maven/surefire/its/fixture
surefire-946-dummy-dependency
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,8 @@ public MavenLauncher offline()
218
218
219
219
public MavenLauncher skipClean ()
220
220
{
221
- writeGoal ( "-Dclean.skip=true" );
221
+ writeGoal ( "-Dclean.skip=true" /* for maven-clean-plugin < 3.0 */ );
222
+ writeGoal ( "-Dmaven.clean.skip=true" /* for maven-clean-plugin 3.0+ */ );
222
223
return this ;
223
224
}
224
225
Original file line number Diff line number Diff line change 34
34
<classifier >${distinct.classifier} </classifier >
35
35
</configuration >
36
36
</plugin >
37
+ <plugin >
38
+ <groupId >org.apache.maven.plugins</groupId >
39
+ <artifactId >maven-install-plugin</artifactId >
40
+ <version >2.5.2</version >
41
+ <!-- Version has to be pinned because of https://issues.apache.org/jira/browse/MINSTALL-151 -->
42
+ </plugin >
37
43
</plugins >
38
44
</build >
39
45
</project >
Original file line number Diff line number Diff line change 51
51
<artifactId >maven-surefire-plugin</artifactId >
52
52
<version >${surefire.version} </version >
53
53
</plugin >
54
+ <plugin >
55
+ <groupId >org.apache.maven.plugins</groupId >
56
+ <artifactId >maven-compiler-plugin</artifactId >
57
+ <version >3.8.1</version >
58
+ <!-- Version pinned because version 3.9.0 and higher of the maven-compiler-plugin throw an -->
59
+ <!-- UnmappableCharacterException when trying to compile the tests in this project -->
60
+ <!-- This happens only on Windows and only if the Java version is 8 - 17. Not with JDK 19. -->
61
+ <!-- Further investigation needed to find the cause and a proper fix. -->
62
+ </plugin >
54
63
</plugins >
55
64
</build >
56
65
You can’t perform that action at this time.
0 commit comments