Author: pramirez
Date: Thu Jun 23 16:38:56 2011
New Revision: 1138974
URL: http://svn.apache.org/viewvc?rev=1138974&view=rev
Log:
OODT-292 Webapp poms need a parent.
Specifies the core pom as a parent so that all the project and Apache
properties will be inherited. Without this the release plugin dies when doing
release:perform.
Modified:
oodt/trunk/CHANGES.txt
oodt/trunk/webapp/components/pom.xml
oodt/trunk/webapp/fmbrowser/pom.xml
oodt/trunk/webapp/wmonitor/pom.xml
Modified: oodt/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1138974&r1=1138973&r2=1138974&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Thu Jun 23 16:38:56 2011
@@ -5,6 +5,9 @@ Release 0.3
--------------------------------------------
Release Date: June 20th, 2011
+* OODT-292 Updated webapp poms to inherit from core parent pom to allow maven
+ release plugin to function properly (pramirez)
+
* OODT-279 Make Resource Manager FAILURE and SUCCESS aware instead of just
COMPLETE aware (mattmann, bfoster)
Modified: oodt/trunk/webapp/components/pom.xml
URL:
http://svn.apache.org/viewvc/oodt/trunk/webapp/components/pom.xml?rev=1138974&r1=1138973&r2=1138974&view=diff
==============================================================================
--- oodt/trunk/webapp/components/pom.xml (original)
+++ oodt/trunk/webapp/components/pom.xml Thu Jun 23 16:38:56 2011
@@ -19,6 +19,12 @@ the License.
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.apache.oodt</groupId>
+ <artifactId>oodt-core</artifactId>
+ <version>0.3-SNAPSHOT</version>
+ <relativePath>../../core/pom.xml</relativePath>
+ </parent>
<groupId>org.apache.oodt</groupId>
<artifactId>oodt-webapp-components</artifactId>
<packaging>jar</packaging>
@@ -106,4 +112,4 @@ the License.
</plugin>
</plugins>
</build>
- </project>
\ No newline at end of file
+ </project>
Modified: oodt/trunk/webapp/fmbrowser/pom.xml
URL:
http://svn.apache.org/viewvc/oodt/trunk/webapp/fmbrowser/pom.xml?rev=1138974&r1=1138973&r2=1138974&view=diff
==============================================================================
--- oodt/trunk/webapp/fmbrowser/pom.xml (original)
+++ oodt/trunk/webapp/fmbrowser/pom.xml Thu Jun 23 16:38:56 2011
@@ -19,7 +19,13 @@ the License.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.oodt</groupId>
+ <parent>
+ <groupId>org.apache.oodt</groupId>
+ <artifactId>oodt-core</artifactId>
+ <version>0.3-SNAPSHOT</version>
+ <relativePath>../../core/pom.xml</relativePath>
+ </parent>
+ <groupId>org.apache.oodt</groupId>
<artifactId>fmbrowser</artifactId>
<packaging>war</packaging>
<version>0.3-SNAPSHOT</version>
@@ -125,4 +131,4 @@ the License.
</plugin>
</plugins>
</build>
- </project>
\ No newline at end of file
+ </project>
Modified: oodt/trunk/webapp/wmonitor/pom.xml
URL:
http://svn.apache.org/viewvc/oodt/trunk/webapp/wmonitor/pom.xml?rev=1138974&r1=1138973&r2=1138974&view=diff
==============================================================================
--- oodt/trunk/webapp/wmonitor/pom.xml (original)
+++ oodt/trunk/webapp/wmonitor/pom.xml Thu Jun 23 16:38:56 2011
@@ -19,7 +19,13 @@ the License.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.oodt</groupId>
+ <parent>
+ <groupId>org.apache.oodt</groupId>
+ <artifactId>oodt-core</artifactId>
+ <version>0.3-SNAPSHOT</version>
+ <relativePath>../../core/pom.xml</relativePath>
+ </parent>
+ <groupId>org.apache.oodt</groupId>
<artifactId>wmonitor</artifactId>
<packaging>war</packaging>
<version>0.3-SNAPSHOT</version>
@@ -131,4 +137,4 @@ the License.
</plugin>
</plugins>
</build>
- </project>
\ No newline at end of file
+ </project>