Title: [40648] trunk/hudson/plugins/SCTMExecutor/pom.xml: * eclipse lifecycle configuration
- Revision
- 40648
- Author
- alienllama
- Date
- 2012-06-18 05:24:55 -0400 (Mon, 18 Jun 2012)
Log Message
* eclipse lifecycle configuration
* JDK 1.6 as prerequiste
Modified Paths
Diff
Modified: trunk/hudson/plugins/SCTMExecutor/pom.xml (40647 => 40648)
--- trunk/hudson/plugins/SCTMExecutor/pom.xml 2012-06-17 10:30:31 UTC (rev 40647)
+++ trunk/hudson/plugins/SCTMExecutor/pom.xml 2012-06-18 09:24:55 UTC (rev 40648)
@@ -1,146 +1,282 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jenkins-ci.plugins</groupId>
- <artifactId>plugin</artifactId>
- <version>1.396</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <groupId>hudson.plugins.sctmexecutor</groupId>
- <artifactId>SCTMExecutor</artifactId>
- <packaging>hpi</packaging>
- <name>SCTMExecutor</name>
- <version>1.6</version>
- <url>http://wiki.jenkins-ci.org/display/JENKINS/SCTMExecutor</url>
- <description>This plug-in allows executions on a Borland SilkCentral Test Manager 2008 R2 or later.</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <licenses>
- <license>
- <name>MIT license</name>
- <comments>All source code is under the MIT license.</comments>
- </license>
- </licenses>
- <distributionManagement>
- <repository>
- <id>maven.jenkins-ci.org</id>
- <url>http://maven.jenkins-ci.org:8081/content/repositories/releases/</url>
- </repository>
- </distributionManagement>
- <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>
- <reporting>
- <excludeDefaults>true</excludeDefaults>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>emma-maven-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <filters>
- <filter>+hudson.*</filter>
- <filter>-com.borland.*</filter>
- </filters>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>2.3.1</version>
- <configuration>
- <findbugsXmlOutput>true</findbugsXmlOutput>
- <!-- Optional directory to put findbugs xml report -->
- <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
- <scm>
- <connection>scm:svn:https://svn.jenkins-ci.org/trunk/hudson/plugins/SCTMExecutor</connection>
- <developerConnection>scm:svn:https://svn.jenkins-ci.org/trunk/hudson/plugins/SCTMExecutor</developerConnection>
- <url>http://fisheye.jenkins-ci.org/browse/jenkins/trunk/hudson/plugins/SCTMExecutor</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>org.easymock</groupId>
- <artifactId>easymock</artifactId>
- <version>2.4</version>
- <type>jar</type>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>axis</groupId>
- <artifactId>axis</artifactId>
- <version>1.4</version>
- <type>jar</type>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.1</version>
- <type>jar</type>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- <type>jar</type>
- </dependency>
- <dependency>
- <groupId>xmlunit</groupId>
- <artifactId>xmlunit</artifactId>
- <version>1.3</version>
- <type>jar</type>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jdom</groupId>
- <artifactId>jdom</artifactId>
- <version>1.1</version>
- <type>jar</type>
- </dependency>
- <dependency>
- <groupId>com.thalesgroup.jenkins-ci.plugins</groupId>
- <artifactId>xunit</artifactId>
- <version>[1.14,)</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.5</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <developers>
- <developer>
- <id>tofuAtjava</id>
- <name>Thomas Fuerer</name>
- <email>[email protected]</email>
- <timezone>CEST</timezone>
- <roles>
- </roles>
- </developer>
- </developers>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jenkins-ci.plugins</groupId>
+ <artifactId>plugin</artifactId>
+ <version>1.396</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <groupId>hudson.plugins.sctmexecutor</groupId>
+ <artifactId>SCTMExecutor</artifactId>
+ <packaging>hpi</packaging>
+ <name>SCTMExecutor</name>
+ <version>1.6</version>
+ <url>http://wiki.jenkins-ci.org/display/JENKINS/SCTMExecutor</url>
+ <description>This plug-in allows executions on a Borland SilkCentral Test Manager 2008 R2 or later.</description>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+ <licenses>
+ <license>
+ <name>MIT license</name>
+ <comments>All source code is under the MIT license.</comments>
+ </license>
+ </licenses>
+ <distributionManagement>
+ <repository>
+ <id>maven.jenkins-ci.org</id>
+ <url>http://maven.jenkins-ci.org:8081/content/repositories/releases/</url>
+ </repository>
+ </distributionManagement>
+ <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>
+ <reporting>
+ <excludeDefaults>true</excludeDefaults>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>emma-maven-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <filters>
+ <filter>+hudson.*</filter>
+ <filter>-com.borland.*</filter>
+ </filters>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>2.3.1</version>
+ <configuration>
+ <findbugsXmlOutput>true</findbugsXmlOutput>
+ <!-- Optional directory to put findbugs xml report -->
+ <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+ <scm>
+ <connection>scm:svn:https://svn.jenkins-ci.org/trunk/hudson/plugins/SCTMExecutor</connection>
+ <developerConnection>scm:svn:https://svn.jenkins-ci.org/trunk/hudson/plugins/SCTMExecutor</developerConnection>
+ <url>http://fisheye.jenkins-ci.org/browse/jenkins/trunk/hudson/plugins/SCTMExecutor</url>
+ </scm>
+ <dependencies>
+ <dependency>
+ <groupId>org.easymock</groupId>
+ <artifactId>easymock</artifactId>
+ <version>2.4</version>
+ <type>jar</type>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>axis</groupId>
+ <artifactId>axis</artifactId>
+ <version>1.4</version>
+ <type>jar</type>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.8.1</version>
+ <type>jar</type>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ <type>jar</type>
+ </dependency>
+ <dependency>
+ <groupId>xmlunit</groupId>
+ <artifactId>xmlunit</artifactId>
+ <version>1.3</version>
+ <type>jar</type>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jdom</groupId>
+ <artifactId>jdom</artifactId>
+ <version>1.1</version>
+ <type>jar</type>
+ </dependency>
+ <dependency>
+ <groupId>com.thalesgroup.jenkins-ci.plugins</groupId>
+ <artifactId>xunit</artifactId>
+ <version>[1.14,)</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.5</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+ <developers>
+ <developer>
+ <id>tofuAtjava</id>
+ <name>Thomas Fuerer</name>
+ <email>[email protected]</email>
+ <timezone>CEST</timezone>
+ <roles>
+ </roles>
+ </developer>
+ </developers>
- <pluginRepositories>
- <pluginRepository>
- <id>repo.jenkins-ci.org</id>
- <url>http://repo.jenkins-ci.org/public/</url>
- </pluginRepository>
- </pluginRepositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>repo.jenkins-ci.org</id>
+ <url>http://repo.jenkins-ci.org/public/</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <!--This plugin's configuration is used to store Eclipse m2e settings
+ only. It has no influence on the Maven build itself. -->
+ <plugin>
+ <groupId>org.eclipse.m2e</groupId>
+ <artifactId>lifecycle-mapping</artifactId>
+ <version>1.0.0</version>
+ <configuration>
+ <lifecycleMappingMetadata>
+ <pluginExecutions>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>org.jenkins-ci.tools</groupId>
+ <artifactId>maven-hpi-plugin</artifactId>
+ <versionRange>[1.63,)</versionRange>
+ <goals>
+ <goal>resolve-test-dependencies</goal>
+ <goal>apt-compile</goal>
+ <goal>insert-test</goal>
+ <goal>test-hpl</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <versionRange>[0.9,)</versionRange>
+ <goals>
+ <goal>display-info</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>org.codehaus.groovy.maven</groupId>
+ <artifactId>gmaven-plugin</artifactId>
+ <versionRange>[0.9,)</versionRange>
+ <goals>
+ <goal>generateTestStubs</goal>
+ <goal>testCompile</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>org.jvnet.localizer</groupId>
+ <artifactId>maven-localizer-plugin</artifactId>
+ <versionRange>[1.8,)</versionRange>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>org.kohsuke</groupId>
+ <artifactId>access-modifier-checker</artifactId>
+ <versionRange>[1.0,)</versionRange>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <versionRange>[2.10,)</versionRange>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>com.cloudbees</groupId>
+ <artifactId>maven-license-plugin</artifactId>
+ <versionRange>[1.0,)</versionRange>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore />
+ </action>
+ </pluginExecution>
+ </pluginExecutions>
+ </lifecycleMappingMetadata>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <executions>
+ <execution>
+ <id>default-testCompile</id>
+ <phase>test-compile</phase>
+ <goals>
+ <goal>testCompile</goal>
+ </goals>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
</project>