Skip to content

Commit 975e014

Browse files
author
Yi Xiao
committed
[maven-release-plugin] prepare release geronimo-eclipse-plugin-3.0.0
git-svn-id: https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/branches/3.0@1364527 13f79535-47bb-0310-9956-ffa450edef68
1 parent d2bebae commit 975e014

File tree

31 files changed

+85
-88
lines changed

31 files changed

+85
-88
lines changed

assembly/pom.xml

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222

2323
<groupId>org.apache.geronimo.devtools</groupId>
2424
<artifactId>assembly</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0</version>
2626
<packaging>pom</packaging>
2727
<name>Geronimo Eclipse Plugin :: Assembly</name>
2828

2929
<parent>
3030
<groupId>org.apache.geronimo.devtools</groupId>
3131
<artifactId>geronimo-eclipse-plugin</artifactId>
32-
<version>3.0.0-SNAPSHOT</version>
32+
<version>3.0.0</version>
3333
<relativePath>../pom.xml</relativePath>
3434
</parent>
3535

@@ -101,22 +101,20 @@
101101
<tasks>
102102
<move todir="${basedir}/target/geronimo-eclipse-plugin-base">
103103
<fileset dir="${basedir}/target/geronimo-eclipse-plugin-base">
104-
<include name="**/*-*.jar"/>
104+
<include name="**/*-*.jar" />
105105
</fileset>
106-
<regexpmapper from="^(.*)${pom.version}(.*)$$" to="\1${osgi.pom.version}\2"/>
106+
<regexpmapper from="^(.*)${pom.version}(.*)$$" to="\1${osgi.pom.version}\2" />
107107
</move>
108108

109-
<taskdef resource="net/sf/antcontrib/antlib.xml"
110-
classpathref="maven.plugin.classpath" />
109+
<taskdef resource="net/sf/antcontrib/antlib.xml" classpathref="maven.plugin.classpath" />
111110

112111
<for param="file">
113112
<fileset dir="${basedir}/target/geronimo-eclipse-plugin-base">
114-
<include name="features/*.jar"/>
113+
<include name="features/*.jar" />
115114
</fileset>
116115
<sequential>
117-
<basename property="jar.filename" file="@{file}"/>
118-
<unzip src="@{file}"
119-
dest="${basedir}/target/geronimo-eclipse-plugin-base/features-unpacked/${jar.filename}"/>
116+
<basename property="jar.filename" file="@{file}" />
117+
<unzip src="@{file}" dest="${basedir}/target/geronimo-eclipse-plugin-base/features-unpacked/${jar.filename}" />
120118
</sequential>
121119
</for>
122120
</tasks>
@@ -131,24 +129,23 @@
131129
<phase>package</phase>
132130
<configuration>
133131
<tasks>
134-
<property name="assembly.dir" value="${basedir}/target/p2-tmp"/>
135-
<property name="input.zip" value="${basedir}/target/geronimo-eclipse-plugin-${project.parent.version}-p2repo.zip"/>
136-
<property name="output.zip" value="${input.zip}"/>
137-
<mkdir dir="${assembly.dir}"/>
138-
<makeurl property="assembly.dir.url" file="${assembly.dir}"/>
132+
<property name="assembly.dir" value="${basedir}/target/p2-tmp" />
133+
<property name="input.zip" value="${basedir}/target/geronimo-eclipse-plugin-${project.parent.version}-p2repo.zip" />
134+
<property name="output.zip" value="${input.zip}" />
135+
<mkdir dir="${assembly.dir}" />
136+
<makeurl property="assembly.dir.url" file="${assembly.dir}" />
139137
<unzip src="${input.zip}" dest="${assembly.dir}" />
140-
<copy file="${basedir}/target/resources/site.xml" todir="${assembly.dir}"/>
138+
<copy file="${basedir}/target/resources/site.xml" todir="${assembly.dir}" />
141139
<java fork="true" classname="org.eclipse.equinox.launcher.Main">
142140
<classpath>
143-
<fileset file="${eclipseInstall}/eclipse/plugins/org.eclipse.equinox.launcher_*.jar"/>
141+
<fileset file="${eclipseInstall}/eclipse/plugins/org.eclipse.equinox.launcher_*.jar" />
144142
</classpath>
145-
<arg line="-application org.eclipse.equinox.p2.publisher.UpdateSitePublisher"/>
146-
<arg line="-metadataRepository ${assembly.dir.url}"/>
147-
<arg line="-artifactRepository ${assembly.dir.url}"/>
148-
<arg line="-source ${assembly.dir}"/>
143+
<arg line="-application org.eclipse.equinox.p2.publisher.UpdateSitePublisher" />
144+
<arg line="-metadataRepository ${assembly.dir.url}" />
145+
<arg line="-artifactRepository ${assembly.dir.url}" />
146+
<arg line="-source ${assembly.dir}" />
149147
</java>
150-
<zip destfile="${output.zip}" update="true"
151-
includes="artifacts.xml content.xml" basedir="${assembly.dir}"/>
148+
<zip destfile="${output.zip}" update="true" includes="artifacts.xml content.xml" basedir="${assembly.dir}" />
152149
</tasks>
153150
</configuration>
154151
<goals>

eclipse/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@
1515
~ limitations under the License.
1616
-->
1717
<!-- $Rev$ $Date$ -->
18-
<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" >
18+
<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">
1919

2020
<modelVersion>4.0.0</modelVersion>
2121

2222
<groupId>org.apache.geronimo.devtools</groupId>
2323
<artifactId>eclipse</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
<packaging>pom</packaging>
2626
<name>Geronimo Eclipse Plugin :: Eclipse</name>
2727

2828
<parent>
2929
<groupId>org.apache.geronimo.devtools</groupId>
3030
<artifactId>geronimo-eclipse-plugin</artifactId>
31-
<version>3.0.0-SNAPSHOT</version>
31+
<version>3.0.0</version>
3232
<relativePath>../pom.xml</relativePath>
3333
</parent>
3434

@@ -44,7 +44,7 @@
4444
<configuration>
4545
<tasks>
4646
<property name="download_to" value="${eclipseDownload}" />
47-
<property name="extract_to" value="${eclipseInstall}" />
47+
<property name="extract_to" value="${eclipseInstall}" />
4848
<ant antfile="${basedir}/build.xml" />
4949
</tasks>
5050
</configuration>

features/org.apache.geronimo.v30.feature/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
<groupId>org.apache.geronimo.devtools</groupId>
2323
<artifactId>org.apache.geronimo.v30.feature</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
<packaging>jar</packaging>
2626
<name>Geronimo Eclipse Plugin :: Features :: v30</name>
2727

2828
<parent>
2929
<groupId>org.apache.geronimo.devtools</groupId>
3030
<artifactId>eclipse-features-parent</artifactId>
31-
<version>3.0.0-SNAPSHOT</version>
31+
<version>3.0.0</version>
3232
<relativePath>../pom.xml</relativePath>
3333
</parent>
3434

features/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222

2323
<groupId>org.apache.geronimo.devtools</groupId>
2424
<artifactId>eclipse-features-parent</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0</version>
2626
<packaging>pom</packaging>
2727
<name>Geronimo Eclipse Plugin :: Features</name>
2828

2929
<parent>
3030
<groupId>org.apache.geronimo.devtools</groupId>
3131
<artifactId>geronimo-eclipse-plugin</artifactId>
32-
<version>3.0.0-SNAPSHOT</version>
32+
<version>3.0.0</version>
3333
<relativePath>../pom.xml</relativePath>
3434
</parent>
3535

plugins/org.apache.geronimo.j2ee.v11.jaxbmodel/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
<groupId>org.apache.geronimo.devtools</groupId>
2323
<artifactId>org.apache.geronimo.j2ee.v11.jaxbmodel</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
<packaging>jar</packaging>
2626
<name>${artifactId}</name>
2727

2828
<parent>
2929
<groupId>org.apache.geronimo.devtools</groupId>
3030
<artifactId>eclipse-plugins-parent</artifactId>
31-
<version>3.0.0-SNAPSHOT</version>
31+
<version>3.0.0</version>
3232
<relativePath>../pom.xml</relativePath>
3333
</parent>
3434

plugins/org.apache.geronimo.jaxbmodel.common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
<groupId>org.apache.geronimo.devtools</groupId>
2323
<artifactId>org.apache.geronimo.jaxbmodel.common</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
<packaging>jar</packaging>
2626
<name>${artifactId}</name>
2727

2828
<parent>
2929
<groupId>org.apache.geronimo.devtools</groupId>
3030
<artifactId>eclipse-plugins-parent</artifactId>
31-
<version>3.0.0-SNAPSHOT</version>
31+
<version>3.0.0</version>
3232
<relativePath>../pom.xml</relativePath>
3333
</parent>
3434

plugins/org.apache.geronimo.jee.v21.jaxbmodel/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
<groupId>org.apache.geronimo.devtools</groupId>
2323
<artifactId>org.apache.geronimo.jee.v21.jaxbmodel</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
<packaging>jar</packaging>
2626
<name>${artifactId}</name>
2727

2828
<parent>
2929
<groupId>org.apache.geronimo.devtools</groupId>
3030
<artifactId>eclipse-plugins-parent</artifactId>
31-
<version>3.0.0-SNAPSHOT</version>
31+
<version>3.0.0</version>
3232
<relativePath>../pom.xml</relativePath>
3333
</parent>
3434

plugins/org.apache.geronimo.jee.v22.jaxbmodel/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
<groupId>org.apache.geronimo.devtools</groupId>
2323
<artifactId>org.apache.geronimo.jee.v22.jaxbmodel</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
<packaging>jar</packaging>
2626
<name>${artifactId}</name>
2727

2828
<parent>
2929
<groupId>org.apache.geronimo.devtools</groupId>
3030
<artifactId>eclipse-plugins-parent</artifactId>
31-
<version>3.0.0-SNAPSHOT</version>
31+
<version>3.0.0</version>
3232
<relativePath>../pom.xml</relativePath>
3333
</parent>
3434

plugins/org.apache.geronimo.runtime.common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
<groupId>org.apache.geronimo.devtools</groupId>
2323
<artifactId>org.apache.geronimo.runtime.common</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
<packaging>jar</packaging>
2626
<name>${artifactId}</name>
2727

2828
<parent>
2929
<groupId>org.apache.geronimo.devtools</groupId>
3030
<artifactId>eclipse-plugins-parent</artifactId>
31-
<version>3.0.0-SNAPSHOT</version>
31+
<version>3.0.0</version>
3232
<relativePath>../pom.xml</relativePath>
3333
</parent>
3434

plugins/org.apache.geronimo.runtime.v11/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
<groupId>org.apache.geronimo.devtools</groupId>
2323
<artifactId>org.apache.geronimo.runtime.v11</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
<packaging>jar</packaging>
2626
<name>${artifactId}</name>
2727

2828
<parent>
2929
<groupId>org.apache.geronimo.devtools</groupId>
3030
<artifactId>eclipse-plugins-parent</artifactId>
31-
<version>3.0.0-SNAPSHOT</version>
31+
<version>3.0.0</version>
3232
<relativePath>../pom.xml</relativePath>
3333
</parent>
3434

0 commit comments

Comments
 (0)