You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by ws...@apache.org on 2007/01/16 04:00:06 UTC

svn commit: r496579 - in /tiles/trunk: pom.xml tiles-api/pom.xml tiles-core/pom.xml tiles-showcase/pom.xml tiles-test/pom.xml

Author: wsmoak
Date: Mon Jan 15 19:00:05 2007
New Revision: 496579

URL: http://svn.apache.org/viewvc?view=rev&rev=496579
Log:
Update poms to groupId org.apache.tiles, and inherit from the apache parent pom.
TILES-3

Modified:
    tiles/trunk/pom.xml
    tiles/trunk/tiles-api/pom.xml
    tiles/trunk/tiles-core/pom.xml
    tiles/trunk/tiles-showcase/pom.xml
    tiles/trunk/tiles-test/pom.xml

Modified: tiles/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tiles/trunk/pom.xml?view=diff&rev=496579&r1=496578&r2=496579
==============================================================================
--- tiles/trunk/pom.xml (original)
+++ tiles/trunk/pom.xml Mon Jan 15 19:00:05 2007
@@ -28,13 +28,13 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <parent>
-        <groupId>org.apache.struts</groupId>
-        <artifactId>struts-master</artifactId>
-        <version>4-SNAPSHOT</version>
+        <groupId>org.apache</groupId>
+        <artifactId>apache</artifactId>
+        <version>3</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.struts.tiles</groupId>
+    <groupId>org.apache.tiles</groupId>
     <artifactId>tiles-parent</artifactId>
     <version>2.0-SNAPSHOT</version>
     <packaging>pom</packaging>
@@ -45,9 +45,9 @@
     <inceptionYear>2000</inceptionYear>
 
     <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/trunk/tiles</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/trunk/tiles</developerConnection>
-        <url>http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles</url>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/tiles/trunk</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/tiles/trunk</developerConnection>
+        <url>http://svn.apache.org/viewvc/tiles/trunk</url>
     </scm>
 
     <issueManagement>
@@ -59,7 +59,7 @@
     <distributionManagement>
         <site>
             <id>apache-site</id>
-            <url>scp://people.apache.org/www/struts.apache.org/struts-sandbox/tiles</url>
+            <url>scp://people.apache.org/www/tiles.apache.org</url>
         </site>
     </distributionManagement>
 
@@ -148,6 +148,7 @@
             <plugin>
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <configuration>
+                    <!-- TODO:  add a checkstyle config file for tiles -->
                     <configLocation>http://svn.apache.org/repos/asf/struts/maven/trunk/build/struts_checks.xml
                     </configLocation>
                 </configuration>
@@ -182,7 +183,7 @@
 
     <dependencies/>
 
-    <!-- Uncomment while Tiles 2 depends on a snapshot of struts-master -->
+    <!-- Needs to be commented out for releases -->
     <repositories>
         <repository>
             <id>apache.snapshots</id>

Modified: tiles/trunk/tiles-api/pom.xml
URL: http://svn.apache.org/viewvc/tiles/trunk/tiles-api/pom.xml?view=diff&rev=496579&r1=496578&r2=496579
==============================================================================
--- tiles/trunk/tiles-api/pom.xml (original)
+++ tiles/trunk/tiles-api/pom.xml Mon Jan 15 19:00:05 2007
@@ -26,7 +26,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <parent>
-        <groupId>org.apache.struts.tiles</groupId>
+        <groupId>org.apache.tiles</groupId>
         <artifactId>tiles-parent</artifactId>
         <version>2.0-SNAPSHOT</version>
     </parent>

Modified: tiles/trunk/tiles-core/pom.xml
URL: http://svn.apache.org/viewvc/tiles/trunk/tiles-core/pom.xml?view=diff&rev=496579&r1=496578&r2=496579
==============================================================================
--- tiles/trunk/tiles-core/pom.xml (original)
+++ tiles/trunk/tiles-core/pom.xml Mon Jan 15 19:00:05 2007
@@ -26,7 +26,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <parent>
-        <groupId>org.apache.struts.tiles</groupId>
+        <groupId>org.apache.tiles</groupId>
         <artifactId>tiles-parent</artifactId>
         <version>2.0-SNAPSHOT</version>
     </parent>
@@ -36,12 +36,6 @@
     <packaging>jar</packaging>
     <name>Tiles - Core Library</name>
 
-    <scm>
-        <connection>svm:svn:http://svn.apache.org/repos/asf/struts/sandbox/trunk/tiles</connection>
-        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/trunk/tiles</developerConnection>
-        <url>http://svn.apache.org/repos/asf/struts/sandbox/trunk/tiles</url>
-    </scm>
-
     <build>
 
         <resources>
@@ -165,7 +159,7 @@
 
     <dependencies>
         <dependency>
-            <groupId>org.apache.struts.tiles</groupId>
+            <groupId>org.apache.tiles</groupId>
             <artifactId>tiles-api</artifactId>
             <version>${pom.version}</version>
         </dependency>

Modified: tiles/trunk/tiles-showcase/pom.xml
URL: http://svn.apache.org/viewvc/tiles/trunk/tiles-showcase/pom.xml?view=diff&rev=496579&r1=496578&r2=496579
==============================================================================
--- tiles/trunk/tiles-showcase/pom.xml (original)
+++ tiles/trunk/tiles-showcase/pom.xml Mon Jan 15 19:00:05 2007
@@ -27,7 +27,7 @@
       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
    <parent>
-      <groupId>org.apache.struts.tiles</groupId>
+      <groupId>org.apache.tiles</groupId>
       <artifactId>tiles-parent</artifactId>
       <version>2.0-SNAPSHOT</version>
    </parent>

Modified: tiles/trunk/tiles-test/pom.xml
URL: http://svn.apache.org/viewvc/tiles/trunk/tiles-test/pom.xml?view=diff&rev=496579&r1=496578&r2=496579
==============================================================================
--- tiles/trunk/tiles-test/pom.xml (original)
+++ tiles/trunk/tiles-test/pom.xml Mon Jan 15 19:00:05 2007
@@ -27,7 +27,7 @@
       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
    <parent>
-      <groupId>org.apache.struts.tiles</groupId>
+      <groupId>org.apache.tiles</groupId>
       <artifactId>tiles-parent</artifactId>
       <version>2.0-SNAPSHOT</version>
    </parent>