Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Jul 8, 2022
1 parent 66e01d7 commit d36ab56
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pct.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ else
PCT_S_ARG=
fi

MAVEN_PROPERTIES=jth.jenkins-war.path=$(pwd)/megawar.war:forkCount=.75C:surefire.excludesFile=$(pwd)/excludes.txt
MAVEN_PROPERTIES=jth.jenkins-war.path=$(pwd)/megawar.war:forkCount=.75C:surefire.excludesFile=$(pwd)/excludes.txt:enforcer.skip=true:jenkins-test-harness.version=1799.v371410da_63fb_
if [[ -n ${EXTRA_MAVEN_PROPERTIES-} ]]; then
MAVEN_PROPERTIES="${MAVEN_PROPERTIES}:${EXTRA_MAVEN_PROPERTIES}"
fi
Expand Down
19 changes: 18 additions & 1 deletion sample-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
<properties>
<changelist>999999-SNAPSHOT</changelist>
<bom>weekly</bom>
<jenkins.version>2.358</jenkins.version>
<!-- TODO https://github.com/jenkinsci/jenkins/pull/6802 -->
<jenkins.version>2.359-rc32570.f88c3356731a_</jenkins.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -498,6 +499,22 @@
</execution>
</executions>
</plugin>
<!-- TODO When JENKINS-68568 is closed, this can be deleted. -->
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>display-info</id>
<configuration>
<rules>
<enforceBytecodeVersion>
<maxJdkVersion>11</maxJdkVersion>
</enforceBytecodeVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
Expand Down

0 comments on commit d36ab56

Please sign in to comment.