You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ws...@apache.org on 2006/05/27 19:12:12 UTC

svn commit: r409841 - in /struts/sandbox/trunk/tiles: pom.xml tiles-core/pom.xml tiles-test/ tiles-test/pom.xml tiles-test/src/ tiles-test/src/main/ tiles-test/src/main/webapp/

Author: wsmoak
Date: Sat May 27 10:12:11 2006
New Revision: 409841

URL: http://svn.apache.org/viewvc?rev=409841&view=rev
Log:
[SB-19] Standalone Tiles - Maven 2 Reorganization
Moved the tiles-test example app, and added a parent pom.

Added:
    struts/sandbox/trunk/tiles/pom.xml   (with props)
    struts/sandbox/trunk/tiles/tiles-test/
    struts/sandbox/trunk/tiles/tiles-test/pom.xml   (with props)
    struts/sandbox/trunk/tiles/tiles-test/src/
    struts/sandbox/trunk/tiles/tiles-test/src/main/
    struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/
      - copied from r406177, struts/sandbox/trunk/tiles-test/
Modified:
    struts/sandbox/trunk/tiles/tiles-core/pom.xml

Added: struts/sandbox/trunk/tiles/pom.xml
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/pom.xml?rev=409841&view=auto
==============================================================================
--- struts/sandbox/trunk/tiles/pom.xml (added)
+++ struts/sandbox/trunk/tiles/pom.xml Sat May 27 10:12:11 2006
@@ -0,0 +1,155 @@
+<?xml version="1.0"?>
+<!--
+/*
+ * Copyright 2005-2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * 
+ * $Id$
+ */
+-->
+
+<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.struts</groupId>
+      <artifactId>struts-parent</artifactId>
+      <version>2</version>
+   </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.struts.tiles</groupId>
+    <artifactId>tiles-parent</artifactId>
+    <version>0.2-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>Standalone Tiles</name>
+    <url>http://struts.apache.org</url>
+    <description>Standalone Tiles</description>
+
+    <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>
+    </scm>
+
+    <issueManagement>
+        <system>JIRA</system>
+        <url>http://issues.apache.org/struts/</url>
+    </issueManagement>
+
+    <ciManagement/>
+    <distributionManagement>
+        <repository>
+           <id>apache-maven-test-builds</id>
+           <name>Apache Maven Repository (Test Builds)</name>
+           <url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
+        </repository>
+        <site>
+            <id>apache-site</id>
+            <url>scp://people.apache.org/www/struts.apache.org/struts-sandbox/tiles</url>
+        </site>
+    </distributionManagement>
+
+    <modules>
+        <module>tiles-core</module>
+        <module>tiles-test</module>
+    </modules>
+
+    <licenses>
+        <license>
+            <name>The Apache Software License, Version 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <distribution>repo</distribution>
+            <comments/>
+        </license>
+    </licenses>
+
+    <organization>
+        <name>Apache Software Foundation</name>
+        <url>http://www.apache.org</url>
+    </organization>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <configuration>
+                        <source>1.4</source>
+                        <target>1.4</target>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+        
+        <extensions>
+            <extension>
+                <groupId>org.apache.struts</groupId>
+                <artifactId>struts-build</artifactId>
+                <version>1.0.1</version>
+            </extension>
+        </extensions>
+        
+        <defaultGoal>install</defaultGoal>
+        
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+             </plugin>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <aggregate>true</aggregate>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <configuration>
+                  <configLocation>org/apache/struts/build/struts_checks.xml</configLocation>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>jxr-maven-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <artifactId>maven-pmd-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <dependencies/>
+
+    <repositories>
+        <repository>
+            <id>apache.snapshots</id>
+            <name>Apache Maven Repository (Snapshots and Test Builds)</name>
+            <url>http://people.apache.org/maven-snapshot-repository</url>
+            <releases><enabled>true</enabled></releases>
+            <snapshots><enabled>true</enabled></snapshots>
+        </repository>
+    </repositories>
+
+</project>

Propchange: struts/sandbox/trunk/tiles/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/tiles/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Propchange: struts/sandbox/trunk/tiles/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/sandbox/trunk/tiles/tiles-core/pom.xml
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-core/pom.xml?rev=409841&r1=409840&r2=409841&view=diff
==============================================================================
--- struts/sandbox/trunk/tiles/tiles-core/pom.xml (original)
+++ struts/sandbox/trunk/tiles/tiles-core/pom.xml Sat May 27 10:12:11 2006
@@ -21,12 +21,16 @@
 <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.struts.tiles</groupId>
+      <artifactId>tiles-parent</artifactId>
+      <version>0.2-SNAPSHOT</version>
+   </parent>
+
    <modelVersion>4.0.0</modelVersion>
-   <groupId>org.apache.struts.tiles</groupId>
    <artifactId>tiles-core</artifactId>
    <packaging>jar</packaging>
-   <version>0.2-SNAPSHOT</version>
-   <name>Tiles Core Library</name>
+   <name>Tiles - Core Library</name>
    <url>http://struts.apache.org/struts-sandbox/tiles-core</url>
 
    <scm>

Added: struts/sandbox/trunk/tiles/tiles-test/pom.xml
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-test/pom.xml?rev=409841&view=auto
==============================================================================
--- struts/sandbox/trunk/tiles/tiles-test/pom.xml (added)
+++ struts/sandbox/trunk/tiles/tiles-test/pom.xml Sat May 27 10:12:11 2006
@@ -0,0 +1,54 @@
+<?xml version="1.0"?>
+<!--
+/* 
+ * Copyright 2005-2006 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * $Id$
+ */
+-->
+
+<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.struts.tiles</groupId>
+      <artifactId>tiles-parent</artifactId>
+      <version>0.2-SNAPSHOT</version>
+   </parent>
+
+   <modelVersion>4.0.0</modelVersion>
+   <artifactId>tiles-test</artifactId>
+   <packaging>war</packaging>
+   <name>Tiles - Apps - Test</name>
+   
+   <dependencies>
+      <dependency>
+         <groupId>${pom.groupId}</groupId>
+         <artifactId>tiles-core</artifactId>
+         <version>${pom.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>javax.servlet</groupId>
+         <artifactId>servlet-api</artifactId>
+         <version>2.3</version>
+         <scope>provided</scope>
+      </dependency>
+   </dependencies>
+   
+   <build>
+     <finalName>${pom.artifactId}</finalName>
+   </build>
+
+</project>

Propchange: struts/sandbox/trunk/tiles/tiles-test/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/sandbox/trunk/tiles/tiles-test/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Propchange: struts/sandbox/trunk/tiles/tiles-test/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL