Title: [40993] trunk/hudson/plugins/serenity/pom.xml: [maven-release-plugin] prepare release serenity-0.5
Revision
40993
Author
michael_couck
Date
2013-09-02 01:15:46 -0400 (Mon, 02 Sep 2013)

Log Message

[maven-release-plugin] prepare release serenity-0.5

Modified Paths


Diff

Modified: trunk/hudson/plugins/serenity/pom.xml (40992 => 40993)


--- trunk/hudson/plugins/serenity/pom.xml	2013-09-02 05:13:21 UTC (rev 40992)
+++ trunk/hudson/plugins/serenity/pom.xml	2013-09-02 05:15:46 UTC (rev 40993)
@@ -1,280 +1,283 @@
-<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>
-		<relativePath>../pom.xml</relativePath>
-		<version>1.529</version>
-	</parent>
-
-	<artifactId>serenity</artifactId>
-	<version>0.5-SNAPSHOT</version>
-	<packaging>hpi</packaging>
-	<name>Jenkins Serenity plugin</name>
-	<url>https://wiki.jenkins-ci.org/pages/viewpage.action?pageId=42468892</url>
-	<properties>
-		<project.build.sourceEncoding>UTF8</project.build.sourceEncoding>
-	</properties>
-
-	<developers>
-		<developer>
-			<id>michael.couck</id>
-			<name>Michael Couck</name>
-			<email>[email protected]</email>
-			<url>http://www.ikube.be/site</url>
-			<timezone>Gent</timezone>
-		</developer>
-	</developers>
-
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-antrun-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>copy.hpi.task</id>
-						<phase>package</phase>
-						<configuration>
-							<tasks verbose="true">
-								<property name="temp" value="target/temp" />
-								<property name="serenity.jar" value="target/serenity.jar" />
-								<property name="manifest" value="src/main/resources/META-INF/MANIFEST.MF" />
-
-								<echo message="Unpacking and repacking serenity.jar with the agent manifest" />
-								<unjar src="" dest="${temp}" overwrite="true" />
-								<jar destfile="${serenity.jar}" basedir="${temp}" manifest="${manifest}" />
-							</tasks>
-						</configuration>
-						<goals>
-							<goal>run</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<configuration>
-					<forkMode>once</forkMode>
-					<argLine>-Xms512m -Xmx1024m</argLine>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>findbugs-maven-plugin</artifactId>
-				<configuration>
-					<xmlOutput>true</xmlOutput>
-					<findbugsXmlOutput>true</findbugsXmlOutput>
-					<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
-					<xmlOutputDirectory>serenity</xmlOutputDirectory>
-				</configuration>
-			</plugin>
-		</plugins>
-		<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.jvnet.hudson.tools</groupId>
-										<artifactId>maven-hpi-plugin</artifactId>
-										<versionRange>[1.48,)</versionRange>
-										<goals>
-											<goal>insert-test</goal>
-											<goal>apt-compile</goal>
-											<goal>resolve-test-dependencies</goal>
-											<goal>test-hpl</goal>
-										</goals>
-									</pluginExecutionFilter>
-									<action>
-										<ignore></ignore>
-									</action>
-								</pluginExecution>
-								<pluginExecution>
-									<pluginExecutionFilter>
-										<groupId>org.codehaus.groovy.maven</groupId>
-										<artifactId>gmaven-plugin</artifactId>
-										<versionRange>[1.0-rc-5,)</versionRange>
-										<goals>
-											<goal>testCompile</goal>
-											<goal>generateTestStubs</goal>
-										</goals>
-									</pluginExecutionFilter>
-									<action>
-										<ignore></ignore>
-									</action>
-								</pluginExecution>
-								<pluginExecution>
-									<pluginExecutionFilter>
-										<groupId>org.apache.maven.plugins</groupId>
-										<artifactId>maven-enforcer-plugin</artifactId>
-										<versionRange>[1.0-beta-1,)</versionRange>
-										<goals>
-											<goal>display-info</goal>
-										</goals>
-									</pluginExecutionFilter>
-									<action>
-										<ignore></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></ignore>
-									</action>
-								</pluginExecution>
-							</pluginExecutions>
-						</lifecycleMappingMetadata>
-					</configuration>
-				</plugin>
-			</plugins>
-		</pluginManagement>
-	</build>
-
-	<dependencies>
-		<dependency>
-			<groupId>org.neodatis</groupId>
-			<artifactId>neodatis-odb</artifactId>
-			<version>1.9-beta-1</version>
-			<type>jar</type>
-			<scope>compile</scope>
-		</dependency>
-		<dependency>
-			<groupId>de.java2html</groupId>
-			<artifactId>java2html</artifactId>
-			<version>5.0</version>
-			<type>jar</type>
-			<scope>compile</scope>
-		</dependency>
-		<!-- <dependency>
-			<groupId>org.apache.openjpa</groupId>
-			<artifactId>openjpa</artifactId>
-			<version>1.2.0</version>
-			<type>jar</type>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>hsqldb</groupId>
-			<artifactId>hsqldb</artifactId>
-			<version>1.8.0.1</version>
-			<type>jar</type>
-			<scope>test</scope>
-		</dependency> -->
-		<dependency>
-			<groupId>org.mockito</groupId>
-			<artifactId>mockito-all</artifactId>
-			<version>1.8.2</version>
-			<type>jar</type>
-			<scope>test</scope>
-		</dependency>
-		<!-- <dependency>
-			<groupId>asm</groupId>
-			<artifactId>asm-all</artifactId>
-			<version>2.2</version>
-		</dependency> -->
-		<!-- <dependency>
-			<groupId>jboss</groupId>
-			<artifactId>jboss-aop-jdk50-client</artifactId>
-			<version>4.2.2.GA</version>
-		</dependency> -->
-		<dependency>
-			<groupId>asm</groupId>
-			<artifactId>asm</artifactId>
-			<version>3.3.1</version>
-		</dependency>
-		<dependency>
-			<groupId>asm</groupId>
-			<artifactId>asm-commons</artifactId>
-			<version>3.3.1</version>
-		</dependency>
-	</dependencies>
-
-	<repositories>
-		<repository>
-			<id>repo.jenkins-ci.org</id>
-			<url>http://repo.jenkins-ci.org/public/</url>
-		</repository>
-		<repository>
-			<id>repo.jenkins-ci.org-war</id>
-			<url>http://repo.jenkins-ci.org/repo/org/jenkins-ci/main/jenkins-war/</url>
-		</repository>
-		<repository>
-			<id>repo.jenkins-ci.org-plugins</id>
-			<url>http://repo.jenkins-ci.org/repo/org/jenkins-ci/plugins/</url>
-		</repository>
-		<repository>
-			<id>repo.jenkins-ci.org-mirror</id>
-			<url>http://mirrors.jenkins-ci.org/war/</url>
-		</repository>
-		<repository>
-			<id>repo1.maven.org</id>
-			<name>repo1 Mirror of http://repo1.maven.org/maven2</name>
-			<url>http://repo1.maven.org/maven2</url>
-		</repository>
-		<repository>
-			<id>repo2.maven.org</id>
-			<name>repo2 Mirror of http://repo2.maven.org/maven2</name>
-			<url>http://repo2.maven.org/maven2</url>
-		</repository>
-		<repository>
-			<id>ibiblio.org</id>
-			<name>ibiblio Mirror of http://repo1.maven.org/maven2/</name>
-			<url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
-		</repository>
-		<repository>
-			<id>hudson-libs</id>
-			<url>https://hudson.dev.java.net/source/browse/*checkout*/hudson/hudson/main/lib
-			</url>
-			<layout>legacy</layout>
-			<releases>
-				<enabled>true</enabled>
-				<updatePolicy>never</updatePolicy>
-			</releases>
-			<snapshots>
-				<enabled>true</enabled>
-			</snapshots>
-		</repository>
-		
-		<repository>
-			<id>jboss-public-repository-group</id>
-			<name>JBoss Public Maven Repository Group</name>
-			<url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
-			<layout>default</layout>
-			<releases>
-				<enabled>true</enabled>
-				<updatePolicy>never</updatePolicy>
-			</releases>
-			<snapshots>
-				<enabled>true</enabled>
-				<updatePolicy>never</updatePolicy>
-			</snapshots>
-		</repository>
-		
-	</repositories>
-
-	<pluginRepositories>
-		<pluginRepository>
-			<id>repo.jenkins-ci.org</id>
-			<url>http://repo.jenkins-ci.org/public/</url>
-		</pluginRepository>
-	</pluginRepositories>
+<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>
+		<relativePath>../pom.xml</relativePath>
+		<version>1.529</version>
+	</parent>
+
+	<artifactId>serenity</artifactId>
+	<version>0.5</version>
+	<packaging>hpi</packaging>
+	<name>Jenkins Serenity plugin</name>
+	<url>https://wiki.jenkins-ci.org/pages/viewpage.action?pageId=42468892</url>
+	<properties>
+		<project.build.sourceEncoding>UTF8</project.build.sourceEncoding>
+	</properties>
+
+	<developers>
+		<developer>
+			<id>michael.couck</id>
+			<name>Michael Couck</name>
+			<email>[email protected]</email>
+			<url>http://www.ikube.be/site</url>
+			<timezone>Gent</timezone>
+		</developer>
+	</developers>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-antrun-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>copy.hpi.task</id>
+						<phase>package</phase>
+						<configuration>
+							<tasks verbose="true">
+								<property name="temp" value="target/temp" />
+								<property name="serenity.jar" value="target/serenity.jar" />
+								<property name="manifest" value="src/main/resources/META-INF/MANIFEST.MF" />
+
+								<echo message="Unpacking and repacking serenity.jar with the agent manifest" />
+								<unjar src="" dest="${temp}" overwrite="true" />
+								<jar destfile="${serenity.jar}" basedir="${temp}" manifest="${manifest}" />
+							</tasks>
+						</configuration>
+						<goals>
+							<goal>run</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<forkMode>once</forkMode>
+					<argLine>-Xms512m -Xmx1024m</argLine>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>findbugs-maven-plugin</artifactId>
+				<configuration>
+					<xmlOutput>true</xmlOutput>
+					<findbugsXmlOutput>true</findbugsXmlOutput>
+					<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
+					<xmlOutputDirectory>serenity</xmlOutputDirectory>
+				</configuration>
+			</plugin>
+		</plugins>
+		<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.jvnet.hudson.tools</groupId>
+										<artifactId>maven-hpi-plugin</artifactId>
+										<versionRange>[1.48,)</versionRange>
+										<goals>
+											<goal>insert-test</goal>
+											<goal>apt-compile</goal>
+											<goal>resolve-test-dependencies</goal>
+											<goal>test-hpl</goal>
+										</goals>
+									</pluginExecutionFilter>
+									<action>
+										<ignore />
+									</action>
+								</pluginExecution>
+								<pluginExecution>
+									<pluginExecutionFilter>
+										<groupId>org.codehaus.groovy.maven</groupId>
+										<artifactId>gmaven-plugin</artifactId>
+										<versionRange>[1.0-rc-5,)</versionRange>
+										<goals>
+											<goal>testCompile</goal>
+											<goal>generateTestStubs</goal>
+										</goals>
+									</pluginExecutionFilter>
+									<action>
+										<ignore />
+									</action>
+								</pluginExecution>
+								<pluginExecution>
+									<pluginExecutionFilter>
+										<groupId>org.apache.maven.plugins</groupId>
+										<artifactId>maven-enforcer-plugin</artifactId>
+										<versionRange>[1.0-beta-1,)</versionRange>
+										<goals>
+											<goal>display-info</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>
+							</pluginExecutions>
+						</lifecycleMappingMetadata>
+					</configuration>
+				</plugin>
+			</plugins>
+		</pluginManagement>
+	</build>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.neodatis</groupId>
+			<artifactId>neodatis-odb</artifactId>
+			<version>1.9-beta-1</version>
+			<type>jar</type>
+			<scope>compile</scope>
+		</dependency>
+		<dependency>
+			<groupId>de.java2html</groupId>
+			<artifactId>java2html</artifactId>
+			<version>5.0</version>
+			<type>jar</type>
+			<scope>compile</scope>
+		</dependency>
+		<!-- <dependency>
+			<groupId>org.apache.openjpa</groupId>
+			<artifactId>openjpa</artifactId>
+			<version>1.2.0</version>
+			<type>jar</type>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>hsqldb</groupId>
+			<artifactId>hsqldb</artifactId>
+			<version>1.8.0.1</version>
+			<type>jar</type>
+			<scope>test</scope>
+		</dependency> -->
+		<dependency>
+			<groupId>org.mockito</groupId>
+			<artifactId>mockito-all</artifactId>
+			<version>1.8.2</version>
+			<type>jar</type>
+			<scope>test</scope>
+		</dependency>
+		<!-- <dependency>
+			<groupId>asm</groupId>
+			<artifactId>asm-all</artifactId>
+			<version>2.2</version>
+		</dependency> -->
+		<!-- <dependency>
+			<groupId>jboss</groupId>
+			<artifactId>jboss-aop-jdk50-client</artifactId>
+			<version>4.2.2.GA</version>
+		</dependency> -->
+		<dependency>
+			<groupId>asm</groupId>
+			<artifactId>asm</artifactId>
+			<version>3.3.1</version>
+		</dependency>
+		<dependency>
+			<groupId>asm</groupId>
+			<artifactId>asm-commons</artifactId>
+			<version>3.3.1</version>
+		</dependency>
+	</dependencies>
+
+	<repositories>
+		<repository>
+			<id>repo.jenkins-ci.org</id>
+			<url>http://repo.jenkins-ci.org/public/</url>
+		</repository>
+		<repository>
+			<id>repo.jenkins-ci.org-war</id>
+			<url>http://repo.jenkins-ci.org/repo/org/jenkins-ci/main/jenkins-war/</url>
+		</repository>
+		<repository>
+			<id>repo.jenkins-ci.org-plugins</id>
+			<url>http://repo.jenkins-ci.org/repo/org/jenkins-ci/plugins/</url>
+		</repository>
+		<repository>
+			<id>repo.jenkins-ci.org-mirror</id>
+			<url>http://mirrors.jenkins-ci.org/war/</url>
+		</repository>
+		<repository>
+			<id>repo1.maven.org</id>
+			<name>repo1 Mirror of http://repo1.maven.org/maven2</name>
+			<url>http://repo1.maven.org/maven2</url>
+		</repository>
+		<repository>
+			<id>repo2.maven.org</id>
+			<name>repo2 Mirror of http://repo2.maven.org/maven2</name>
+			<url>http://repo2.maven.org/maven2</url>
+		</repository>
+		<repository>
+			<id>ibiblio.org</id>
+			<name>ibiblio Mirror of http://repo1.maven.org/maven2/</name>
+			<url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
+		</repository>
+		<repository>
+			<id>hudson-libs</id>
+			<url>https://hudson.dev.java.net/source/browse/*checkout*/hudson/hudson/main/lib
+			</url>
+			<layout>legacy</layout>
+			<releases>
+				<enabled>true</enabled>
+				<updatePolicy>never</updatePolicy>
+			</releases>
+			<snapshots>
+				<enabled>true</enabled>
+			</snapshots>
+		</repository>
+		
+		<repository>
+			<id>jboss-public-repository-group</id>
+			<name>JBoss Public Maven Repository Group</name>
+			<url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
+			<layout>default</layout>
+			<releases>
+				<enabled>true</enabled>
+				<updatePolicy>never</updatePolicy>
+			</releases>
+			<snapshots>
+				<enabled>true</enabled>
+				<updatePolicy>never</updatePolicy>
+			</snapshots>
+		</repository>
+		
+	</repositories>
+
+	<pluginRepositories>
+		<pluginRepository>
+			<id>repo.jenkins-ci.org</id>
+			<url>http://repo.jenkins-ci.org/public/</url>
+		</pluginRepository>
+	</pluginRepositories>
+
+  <scm>
+    <connection>scm:svn:https://svn.jenkins-ci.org/tags/serenity-0.5</connection>
+    <developerConnection>scm:svn:https://svn.jenkins-ci.org/tags/serenity-0.5</developerConnection>
+    <url>https://svn.jenkins-ci.org/tags/serenity-0.5</url>
+  </scm>
 </project>
\ No newline at end of file

--
You received this message because you are subscribed to the Google Groups "Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to