Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
[JENKINS-32493] Adapt to 2.0-SNAPSHOT and rebase.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Rodriguez committed Jan 20, 2016
1 parent 05f1c3a commit c6ecf7a
Showing 1 changed file with 4 additions and 77 deletions.
81 changes: 4 additions & 77 deletions pom.xml
Expand Up @@ -27,8 +27,8 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin-pom</artifactId>
<version>0.1-SNAPSHOT</version> <!-- but see Jenkins-Version override below -->
<artifactId>plugin</artifactId>
<version>2.0-SNAPSHOT</version> <!-- but see Jenkins-Version override below -->
</parent>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-pom</artifactId>
Expand All @@ -50,6 +50,8 @@
</scm>
<properties>
<jenkins.version>1.609.2</jenkins.version>
<!-- TODO: Compilation errors to investigate when using 2.0 (htmlunit related) -->
<jenkins-test-harness.version>1.609.2</jenkins-test-harness.version>
</properties>
<modules>
<module>step-api</module>
Expand Down Expand Up @@ -102,12 +104,6 @@
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
Expand All @@ -122,11 +118,6 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.jvnet.localizer</groupId>
<artifactId>maven-localizer-plugin</artifactId>
<version>1.23</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand All @@ -148,82 +139,18 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>rerunFailingTests</id>
<activation>
<property>
<name>!test</name>
</property>
</activation>
<properties>
<surefire.rerunFailingTestsCount>4</surefire.rerunFailingTestsCount>
</properties>
</profile>
<profile>
<id>findbugs</id>
<activation>
<property>
<name>skipTests</name>
<value>!true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<xmlOutput>true</xmlOutput>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

Expand Down

0 comments on commit c6ecf7a

Please sign in to comment.