You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ha...@apache.org on 2011/11/17 17:19:46 UTC

svn commit: r1203241 - in /geronimo/devtools/eclipse-plugin/branches/3.0-beta-1: assembly/pom.xml eclipse/pom.xml features/pom.xml plugins/pom.xml pom.xml

Author: hanhongfang
Date: Thu Nov 17 16:19:45 2011
New Revision: 1203241

URL: http://svn.apache.org/viewvc?rev=1203241&view=rev
Log:
[maven-release-plugin] prepare release geronimo-eclipse-plugin-3.0-beta-1

Modified:
    geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/assembly/pom.xml
    geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/eclipse/pom.xml
    geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/features/pom.xml
    geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/plugins/pom.xml
    geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/pom.xml

Modified: geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/assembly/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/assembly/pom.xml?rev=1203241&r1=1203240&r2=1203241&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/assembly/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/assembly/pom.xml Thu Nov 17 16:19:45 2011
@@ -29,7 +29,7 @@
     <parent>
         <groupId>org.apache.geronimo.devtools</groupId>
         <artifactId>geronimo-eclipse-plugin</artifactId>
-        <version>3.0-beta-1-SNAPSHOT</version>
+        <version>3.0-beta-1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
                         
@@ -64,24 +64,23 @@
                         <phase>package</phase>
                         <configuration>
                             <tasks>
-                                <property name="assembly.dir" value="${basedir}/target/p2-tmp"/>
-                                <property name="input.zip" value="${basedir}/target/geronimo-eclipse-plugin-${project.parent.version}-p2repo.zip"/>
-                                <property name="output.zip" value="${input.zip}"/>
-                                <mkdir dir="${assembly.dir}"/>
-                                <makeurl property="assembly.dir.url" file="${assembly.dir}"/>
+                                <property name="assembly.dir" value="${basedir}/target/p2-tmp" />
+                                <property name="input.zip" value="${basedir}/target/geronimo-eclipse-plugin-${project.parent.version}-p2repo.zip" />
+                                <property name="output.zip" value="${input.zip}" />
+                                <mkdir dir="${assembly.dir}" />
+                                <makeurl property="assembly.dir.url" file="${assembly.dir}" />
                                 <unzip src="${input.zip}" dest="${assembly.dir}" />
-                                <copy file="${basedir}/src/main/assembly/site.xml" todir="${assembly.dir}"/>
+                                <copy file="${basedir}/src/main/assembly/site.xml" todir="${assembly.dir}" />
                                 <java fork="true" classname="org.eclipse.equinox.launcher.Main">
                                     <classpath>
-                                        <fileset file="${eclipseInstall}/eclipse/plugins/org.eclipse.equinox.launcher_*.jar"/>
+                                        <fileset file="${eclipseInstall}/eclipse/plugins/org.eclipse.equinox.launcher_*.jar" />
                                     </classpath>
-                                    <arg line="-application org.eclipse.equinox.p2.publisher.UpdateSitePublisher"/>
-                                    <arg line="-metadataRepository ${assembly.dir.url}"/>  
-                                    <arg line="-artifactRepository ${assembly.dir.url}"/>
-                                    <arg line="-source ${assembly.dir}"/>
+                                    <arg line="-application org.eclipse.equinox.p2.publisher.UpdateSitePublisher" />
+                                    <arg line="-metadataRepository ${assembly.dir.url}" />  
+                                    <arg line="-artifactRepository ${assembly.dir.url}" />
+                                    <arg line="-source ${assembly.dir}" />
                                 </java>
-                                <zip destfile="${output.zip}" update="true" 
-                                     includes="artifacts.xml content.xml" basedir="${assembly.dir}"/>
+                                <zip destfile="${output.zip}" update="true" includes="artifacts.xml content.xml" basedir="${assembly.dir}" />
                             </tasks>
                         </configuration>
                         <goals>

Modified: geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/eclipse/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/eclipse/pom.xml?rev=1203241&r1=1203240&r2=1203241&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/eclipse/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/eclipse/pom.xml Thu Nov 17 16:19:45 2011
@@ -15,7 +15,7 @@
   ~ limitations under the License.
   -->
 <!-- $Rev$ $Date$ -->
-<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" >
+<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>
 
@@ -28,7 +28,7 @@
     <parent>
         <groupId>org.apache.geronimo.devtools</groupId>
         <artifactId>geronimo-eclipse-plugin</artifactId>
-        <version>3.0-beta-1-SNAPSHOT</version>
+        <version>3.0-beta-1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -44,7 +44,7 @@
                         <configuration>
                             <tasks>
                                 <property name="download_to" value="${eclipseDownload}" />
-                                <property name="extract_to"  value="${eclipseInstall}" />
+                                <property name="extract_to" value="${eclipseInstall}" />
                                 <ant antfile="${basedir}/build.xml" />
                             </tasks>
                         </configuration>

Modified: geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/features/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/features/pom.xml?rev=1203241&r1=1203240&r2=1203241&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/features/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/features/pom.xml Thu Nov 17 16:19:45 2011
@@ -29,7 +29,7 @@
     <parent>
         <groupId>org.apache.geronimo.devtools</groupId>
         <artifactId>geronimo-eclipse-plugin</artifactId>
-        <version>3.0-beta-1-SNAPSHOT</version>
+        <version>3.0-beta-1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 

Modified: geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/plugins/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/plugins/pom.xml?rev=1203241&r1=1203240&r2=1203241&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/plugins/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/plugins/pom.xml Thu Nov 17 16:19:45 2011
@@ -29,7 +29,7 @@
     <parent>
         <groupId>org.apache.geronimo.devtools</groupId>
         <artifactId>geronimo-eclipse-plugin</artifactId>
-        <version>3.0-beta-1-SNAPSHOT</version>
+        <version>3.0-beta-1</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
                 

Modified: geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/pom.xml?rev=1203241&r1=1203240&r2=1203241&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/3.0-beta-1/pom.xml Thu Nov 17 16:19:45 2011
@@ -22,7 +22,7 @@
                         
     <groupId>org.apache.geronimo.devtools</groupId>
     <artifactId>geronimo-eclipse-plugin</artifactId>
-    <version>3.0-beta-1-SNAPSHOT</version>
+    <version>3.0-beta-1</version>
     <packaging>pom</packaging>
     <name>Geronimo Eclipse Plugin</name>
                         
@@ -66,9 +66,9 @@
     </mailingLists>
                         
     <scm>
-        <connection>scm:svn:https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/trunk/</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/trunk/</developerConnection>
-        <url>https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/trunk/</url>
+        <connection>scm:svn:https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/tags/geronimo-eclipse-plugin-3.0-beta-1</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/tags/geronimo-eclipse-plugin-3.0-beta-1</developerConnection>
+        <url>https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/tags/geronimo-eclipse-plugin-3.0-beta-1</url>
     </scm>
                         
     <organization>
@@ -400,7 +400,7 @@
 				<executions>
 					<execution>						
 						<configuration>							
-							<attached>false</attached>>
+							<attached>false</attached>&gt;
 						</configuration>
 					</execution>
 				</executions>