Skip to content

Commit

Permalink
Stop testing Java 11 (#111)
Browse files Browse the repository at this point in the history
* Stop testing Java 11

* Prepend argLine from plugin-pom

---------

Co-authored-by: Bryan Stopp <bstopp@users.noreply.github.com>
Co-authored-by: strangelookingnerd <strangelookingnerd@users.noreply.github.com>
  • Loading branch information
3 people authored Jan 14, 2025
1 parent 111b369 commit 6832b68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
https://github.com/jenkins-infra/pipeline-library/
*/
buildPlugin(
useContainerAgent: true,
failFast: false,
forkCount: '1C', // run this number of tests in parallel for faster feedback. If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
configurations: [
[platform: 'linux', jdk: 11],
[platform: 'windows', jdk: 11],
[platform: 'linux', jdk: 21],
[platform: 'windows', jdk: 17],
])
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
-javaagent:"${settings.localRepository}"/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar
${argLine} -javaagent:"${settings.localRepository}"/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar
</argLine>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
Expand Down

0 comments on commit 6832b68

Please sign in to comment.