Skip to content

Commit 05cebfc

Browse files
author
Xuan Dai
committed
[maven-release-plugin] prepare release 2.1.5
git-svn-id: https://svn.apache.org/repos/asf/geronimo/devtools/eclipse-plugin/branches/2.1.5@933895 13f79535-47bb-0310-9956-ffa450edef68
1 parent dd0d468 commit 05cebfc

File tree

17 files changed

+143
-144
lines changed

17 files changed

+143
-144
lines changed

assembly/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
~ limitations under the License.
1717
-->
1818
<!-- $Rev$ $Date$ -->
19-
<project>
19+
<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">
2020
<modelVersion>4.0.0</modelVersion>
2121
<groupId>org.apache.geronimo.devtools</groupId>
2222
<artifactId>assembly</artifactId>
2323
<packaging>pom</packaging>
2424
<name>Geronimo Eclipse Plugin :: Assembly</name>
25-
<version>${org.apache.geronimo.v21.feature_version}</version>
25+
<version>2.1.5</version>
2626
<parent>
2727
<groupId>org.apache.geronimo.devtools</groupId>
2828
<artifactId>geronimo-eclipse-plugin</artifactId>

eclipse/pom.xml

Lines changed: 109 additions & 109 deletions
Original file line numberDiff line numberDiff line change
@@ -1,109 +1,109 @@
1-
<!--
2-
~ Licensed to the Apache Software Foundation (ASF) under one or more
3-
~ contributor license agreements. See the NOTICE file distributed with
4-
~ this work for additional information regarding copyright ownership.
5-
~ The ASF licenses this file to You under the Apache License, Version 2.0
6-
~ (the "License"); you may not use this file except in compliance with
7-
~ the License. You may obtain a copy of the License at
8-
~
9-
~ http://www.apache.org/licenses/LICENSE-2.0
10-
~
11-
~ Unless required by applicable law or agreed to in writing, software
12-
~ distributed under the License is distributed on an "AS IS" BASIS,
13-
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
~ See the License for the specific language governing permissions and
15-
~ limitations under the License.
16-
-->
17-
<!-- $Rev: 529767 $ $Date: 2007-04-17 17:21:24 -0400 (Tue, 17 Apr 2007) $ -->
18-
<project>
19-
20-
<modelVersion>4.0.0</modelVersion>
21-
<groupId>org.apache.geronimo.devtools</groupId>
22-
<artifactId>eclipse</artifactId>
23-
<packaging>pom</packaging>
24-
<name>Geronimo Eclipse Plugin :: Eclipse</name>
25-
26-
<parent>
27-
<groupId>org.apache.geronimo.devtools</groupId>
28-
<artifactId>geronimo-eclipse-plugin</artifactId>
29-
<version>2.1.5</version>
30-
<relativePath>../pom.xml</relativePath>
31-
</parent>
32-
33-
<build>
34-
<plugins>
35-
<plugin>
36-
<groupId>org.apache.maven.plugins</groupId>
37-
<artifactId>maven-antrun-plugin</artifactId>
38-
<executions>
39-
<execution>
40-
<id>create-eclipse-target</id>
41-
<phase>validate</phase>
42-
<configuration>
43-
<tasks>
44-
<property name="LOCAL_M2_REPO" value="${settings.localRepository}"/>
45-
<ant antfile="${basedir}/build.xml">
46-
<target name="${eclipsePlatformFamily}"></target>
47-
<target name="tptp"></target>
48-
</ant>
49-
</tasks>
50-
</configuration>
51-
<goals>
52-
<goal>run</goal>
53-
</goals>
54-
</execution>
55-
</executions>
56-
</plugin>
57-
</plugins>
58-
</build>
59-
60-
<profiles>
61-
<profile>
62-
<id>windows</id>
63-
<activation>
64-
<os>
65-
<family>windows</family>
66-
</os>
67-
</activation>
68-
<properties>
69-
<eclipsePlatformFamily>win32</eclipsePlatformFamily>
70-
</properties>
71-
</profile>
72-
<profile>
73-
<id>unix-x86</id>
74-
<activation>
75-
<os>
76-
<family>unix</family>
77-
<arch>i386</arch>
78-
</os>
79-
</activation>
80-
<properties>
81-
<eclipsePlatformFamily>linux</eclipsePlatformFamily>
82-
</properties>
83-
</profile>
84-
<profile>
85-
<id>unix-x86_64</id>
86-
<activation>
87-
<os>
88-
<family>unix</family>
89-
<arch>amd64</arch>
90-
</os>
91-
</activation>
92-
<properties>
93-
<eclipsePlatformFamily>linux-x86_64</eclipsePlatformFamily>
94-
</properties>
95-
</profile>
96-
<profile>
97-
<id>mac</id>
98-
<activation>
99-
<os>
100-
<family>mac</family>
101-
</os>
102-
</activation>
103-
<properties>
104-
<eclipsePlatformFamily>macos</eclipsePlatformFamily>
105-
</properties>
106-
</profile>
107-
</profiles>
108-
109-
</project>
1+
<!--
2+
~ Licensed to the Apache Software Foundation (ASF) under one or more
3+
~ contributor license agreements. See the NOTICE file distributed with
4+
~ this work for additional information regarding copyright ownership.
5+
~ The ASF licenses this file to You under the Apache License, Version 2.0
6+
~ (the "License"); you may not use this file except in compliance with
7+
~ the License. You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
<!-- $Rev: 529767 $ $Date: 2007-04-17 17:21:24 -0400 (Tue, 17 Apr 2007) $ -->
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">
19+
20+
<modelVersion>4.0.0</modelVersion>
21+
<groupId>org.apache.geronimo.devtools</groupId>
22+
<artifactId>eclipse</artifactId>
23+
<packaging>pom</packaging>
24+
<name>Geronimo Eclipse Plugin :: Eclipse</name>
25+
26+
<parent>
27+
<groupId>org.apache.geronimo.devtools</groupId>
28+
<artifactId>geronimo-eclipse-plugin</artifactId>
29+
<version>2.1.5</version>
30+
<relativePath>../pom.xml</relativePath>
31+
</parent>
32+
33+
<build>
34+
<plugins>
35+
<plugin>
36+
<groupId>org.apache.maven.plugins</groupId>
37+
<artifactId>maven-antrun-plugin</artifactId>
38+
<executions>
39+
<execution>
40+
<id>create-eclipse-target</id>
41+
<phase>validate</phase>
42+
<configuration>
43+
<tasks>
44+
<property name="LOCAL_M2_REPO" value="${settings.localRepository}" />
45+
<ant antfile="${basedir}/build.xml">
46+
<target name="${eclipsePlatformFamily}" />
47+
<target name="tptp" />
48+
</ant>
49+
</tasks>
50+
</configuration>
51+
<goals>
52+
<goal>run</goal>
53+
</goals>
54+
</execution>
55+
</executions>
56+
</plugin>
57+
</plugins>
58+
</build>
59+
60+
<profiles>
61+
<profile>
62+
<id>windows</id>
63+
<activation>
64+
<os>
65+
<family>windows</family>
66+
</os>
67+
</activation>
68+
<properties>
69+
<eclipsePlatformFamily>win32</eclipsePlatformFamily>
70+
</properties>
71+
</profile>
72+
<profile>
73+
<id>unix-x86</id>
74+
<activation>
75+
<os>
76+
<family>unix</family>
77+
<arch>i386</arch>
78+
</os>
79+
</activation>
80+
<properties>
81+
<eclipsePlatformFamily>linux</eclipsePlatformFamily>
82+
</properties>
83+
</profile>
84+
<profile>
85+
<id>unix-x86_64</id>
86+
<activation>
87+
<os>
88+
<family>unix</family>
89+
<arch>amd64</arch>
90+
</os>
91+
</activation>
92+
<properties>
93+
<eclipsePlatformFamily>linux-x86_64</eclipsePlatformFamily>
94+
</properties>
95+
</profile>
96+
<profile>
97+
<id>mac</id>
98+
<activation>
99+
<os>
100+
<family>mac</family>
101+
</os>
102+
</activation>
103+
<properties>
104+
<eclipsePlatformFamily>macos</eclipsePlatformFamily>
105+
</properties>
106+
</profile>
107+
</profiles>
108+
109+
</project>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
~ limitations under the License.
1616
-->
1717
<!-- $Rev$ $Date$ -->
18-
<project>
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
<modelVersion>4.0.0</modelVersion>
2020
<artifactId>org.apache.geronimo.v21.feature</artifactId>
2121
<packaging>jar</packaging>
22-
<version>${org.apache.geronimo.v21.feature_version}</version>
22+
<version>2.1.5</version>
2323
<name>${artifactId}</name>
2424
<parent>
2525
<groupId>org.apache.geronimo.devtools</groupId>

features/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
~ limitations under the License.
1717
-->
1818
<!-- $Rev$ $Date$ -->
19-
<project>
19+
<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">
2020
<modelVersion>4.0.0</modelVersion>
2121
<groupId>org.apache.geronimo.devtools</groupId>
2222
<artifactId>eclipse-features-parent</artifactId>

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
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"
19-
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">
2019
<modelVersion>4.0.0</modelVersion>
2120

2221
<artifactId>org.apache.geronimo.jee.v21.jaxbmodel</artifactId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
~ limitations under the License.
1616
-->
1717
<!-- $Rev$ $Date$ -->
18-
<project>
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
<modelVersion>4.0.0</modelVersion>
2020
<artifactId>org.apache.geronimo.runtime.common</artifactId>
2121
<packaging>jar</packaging>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
~ limitations under the License.
1616
-->
1717
<!-- $Rev$ $Date$ -->
18-
<project>
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
<modelVersion>4.0.0</modelVersion>
2020
<artifactId>org.apache.geronimo.runtime.v20</artifactId>
2121
<packaging>jar</packaging>

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
~ limitations under the License.
1616
-->
1717
<!-- $Rev: 610511 $ $Date: 2008-01-09 13:50:47 -0500 (Wed, 09 Jan 2008) $ -->
18-
<project>
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
<modelVersion>4.0.0</modelVersion>
2020
<artifactId>org.apache.geronimo.runtime.v21</artifactId>
2121
<packaging>jar</packaging>
@@ -60,19 +60,19 @@
6060
<include>LICENSE.txt</include>
6161
<include>NOTICE.txt</include>
6262
</includes>
63-
</resource>
63+
</resource>
6464
<!-- GERONIMODEVTOOLS-406 Display license and notice in Eclipse Update Manager
6565
See also http://www.eclipse.org/legal/guidetolegaldoc.php
6666
about.html references about_files to show licenses and notices to the user
6767
at install time using Eclipse Update Manager, and after install.
6868
-->
69-
<resource>
70-
<targetPath>about_files</targetPath>
71-
<directory>.</directory>
72-
<includes>
73-
<include>LICENSE.txt</include>
74-
<include>NOTICE.txt</include>
75-
</includes>
69+
<resource>
70+
<targetPath>about_files</targetPath>
71+
<directory>.</directory>
72+
<includes>
73+
<include>LICENSE.txt</include>
74+
<include>NOTICE.txt</include>
75+
</includes>
7676
</resource>
7777
<resource>
7878
<targetPath>about_files</targetPath>

plugins/org.apache.geronimo.st.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
~ limitations under the License.
1616
-->
1717
<!-- $Rev$ $Date$ -->
18-
<project>
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
<modelVersion>4.0.0</modelVersion>
2020
<artifactId>org.apache.geronimo.st.core</artifactId>
2121
<packaging>jar</packaging>

plugins/org.apache.geronimo.st.schemas/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
~ limitations under the License.
1616
-->
1717
<!-- $Rev$ $Date$ -->
18-
<project>
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
<modelVersion>4.0.0</modelVersion>
2020
<artifactId>org.apache.geronimo.st.schemas</artifactId>
2121
<packaging>jar</packaging>

0 commit comments

Comments
 (0)