You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by zh...@apache.org on 2005/10/13 20:36:20 UTC

svn commit: r320867 - /portals/pluto/branches/pluto-1.1/pluto-testsuite/pom.xml

Author: zheng
Date: Thu Oct 13 11:36:17 2005
New Revision: 320867

URL: http://svn.apache.org/viewcvs?rev=320867&view=rev
Log:
Updated group IDs for portlet and servlet api (to use javax.blahblah).

Modified:
    portals/pluto/branches/pluto-1.1/pluto-testsuite/pom.xml

Modified: portals/pluto/branches/pluto-1.1/pluto-testsuite/pom.xml
URL: http://svn.apache.org/viewcvs/portals/pluto/branches/pluto-1.1/pluto-testsuite/pom.xml?rev=320867&r1=320866&r2=320867&view=diff
==============================================================================
--- portals/pluto/branches/pluto-1.1/pluto-testsuite/pom.xml (original)
+++ portals/pluto/branches/pluto-1.1/pluto-testsuite/pom.xml Thu Oct 13 11:36:17 2005
@@ -1,15 +1,18 @@
-<project>
+<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">
+  
+  <parent>
+    <groupId>org.apache.pluto</groupId>
+    <artifactId>pluto</artifactId>
+    <version>1.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.pluto</groupId>
   <artifactId>pluto-testsuite</artifactId>
   <packaging>war</packaging>
   <name>Pluto Testsuite Portlet</name>
   <url>http://portals.apache.org/pluto</url>
-  <parent>
-    <groupId>org.apache.pluto</groupId>
-	<artifactId>pluto</artifactId>
-	<version>1.1-SNAPSHOT</version>
-  </parent>
   <dependencies>
     <dependency>
       <groupId>junit</groupId>
@@ -17,35 +20,35 @@
       <version>3.8.1</version>
       <scope>test</scope>
     </dependency>
-	<dependency>
+    <dependency>
       <groupId>commons-digester</groupId>
-	  <artifactId>commons-digester</artifactId>
-	  <version>1.7</version>
-	  <scope>compile</scope>
+      <artifactId>commons-digester</artifactId>
+      <version>1.7</version>
+      <scope>compile</scope>
     </dependency>
-	<dependency>
-      <groupId>portlet-api</groupId>
-	  <artifactId>portlet-api</artifactId>
-	  <version>1.0</version>
-	  <scope>provided</scope>
+    <dependency>
+      <groupId>javax.portlet</groupId>
+      <artifactId>portlet-api</artifactId>
+      <version>1.0</version>
+      <scope>provided</scope>
     </dependency>
-	<dependency>
-      <groupId>servletapi</groupId>
-	  <artifactId>servletapi</artifactId>
-	  <version>2.3</version>
-	  <scope>provided</scope>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.3</version>
+      <scope>provided</scope>
     </dependency>
-	<dependency>
+    <dependency>
       <groupId>jstl</groupId>
-	  <artifactId>jstl</artifactId>
-	  <version>1.1.2</version>
-	  <scope>compile</scope>
+      <artifactId>jstl</artifactId>
+      <version>1.1.2</version>
+      <scope>compile</scope>
     </dependency>
-	<dependency>
+    <dependency>
       <groupId>taglibs</groupId>
-	  <artifactId>standard</artifactId>
-	  <version>1.0.4</version>
-	  <scope>compile</scope>
+      <artifactId>standard</artifactId>
+      <version>1.0.4</version>
+      <scope>compile</scope>
     </dependency>
   </dependencies>
   <build>