Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-34846] Keep 1.466 baseline. Use 1.466 test harness.
  • Loading branch information
armfergom committed May 16, 2016
1 parent be43f39 commit 1c0bc91
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions pom.xml
Expand Up @@ -29,9 +29,9 @@
</scm>

<properties>
<jenkins.version>1.580.1</jenkins.version>
<jenkins-test-harness.version>1.466</jenkins-test-harness.version>
<jenkins.version>1.466</jenkins.version>
<java.level>6</java.level>
<findbugs.failOnError>false</findbugs.failOnError>
</properties>

<dependencies>
Expand Down Expand Up @@ -67,6 +67,31 @@
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>display-info</id>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<exclude>log4j:log4j:*:jar:compile</exclude>
<exclude>log4j:log4j:*:jar:runtime</exclude>
<exclude>commons-logging:commons-logging:*:jar:compile</exclude>
<exclude>commons-logging:commons-logging:*:jar:runtime</exclude>
</excludes>
</bannedDependencies>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>


0 comments on commit 1c0bc91

Please sign in to comment.