You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2006/06/07 19:07:54 UTC

svn commit: r412455 - in /tapestry/tapestry4/trunk: ./ annotations/ contrib/ examples/ examples/TimeTracker/ examples/Vlib/ examples/VlibBeans/ examples/Workbench/ framework/ portlet/ src/site/ src/site/resources/ src/site/resources/images/

Author: jkuhnert
Date: Wed Jun  7 10:07:53 2006
New Revision: 412455

URL: http://svn.apache.org/viewvc?rev=412455&view=rev
Log:
Initial maven2 conversion work, currently only capable of compiling and deploying a shell site

Added:
    tapestry/tapestry4/trunk/annotations/pom.xml   (with props)
    tapestry/tapestry4/trunk/contrib/pom.xml   (with props)
    tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml   (with props)
    tapestry/tapestry4/trunk/examples/Vlib/pom.xml   (with props)
    tapestry/tapestry4/trunk/examples/VlibBeans/pom.xml   (with props)
    tapestry/tapestry4/trunk/examples/Workbench/pom.xml   (with props)
    tapestry/tapestry4/trunk/examples/pom.xml   (with props)
    tapestry/tapestry4/trunk/framework/pom.xml   (with props)
    tapestry/tapestry4/trunk/pom.xml   (with props)
    tapestry/tapestry4/trunk/portlet/pom.xml   (with props)
    tapestry/tapestry4/trunk/src/site/
    tapestry/tapestry4/trunk/src/site/resources/
    tapestry/tapestry4/trunk/src/site/resources/images/
    tapestry/tapestry4/trunk/src/site/resources/images/asf_logo_wide.gif   (with props)
    tapestry/tapestry4/trunk/src/site/resources/images/tapestry_banner.gif   (with props)
    tapestry/tapestry4/trunk/src/site/site.xml   (with props)
Modified:
    tapestry/tapestry4/trunk/.classpath
    tapestry/tapestry4/trunk/.project
    tapestry/tapestry4/trunk/examples/   (props changed)
    tapestry/tapestry4/trunk/examples/TimeTracker/   (props changed)
    tapestry/tapestry4/trunk/examples/Vlib/   (props changed)
    tapestry/tapestry4/trunk/examples/VlibBeans/   (props changed)

Modified: tapestry/tapestry4/trunk/.classpath
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/.classpath?rev=412455&r1=412454&r2=412455&view=diff
==============================================================================
Binary files - no diff available.

Modified: tapestry/tapestry4/trunk/.project
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/.project?rev=412455&r1=412454&r2=412455&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/.project (original)
+++ tapestry/tapestry4/trunk/.project Wed Jun  7 10:07:53 2006
@@ -15,9 +15,15 @@
 			<arguments>
 			</arguments>
 		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
 	</buildSpec>
 	<natures>
 		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
 		<nature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</nature>
 	</natures>
 </projectDescription>

Added: tapestry/tapestry4/trunk/annotations/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/annotations/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/annotations/pom.xml (added)
+++ tapestry/tapestry4/trunk/annotations/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,72 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>annotations</artifactId>
+    <packaging>jar</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Annotations</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>framework</artifactId>
+            <version>4.1.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <plugins>
+                <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version>
+                </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <outputDirectory>../target/site/annotations</outputDirectory>
+        <plugins>
+            <!-- 
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>surefire-report-maven-plugin</artifactId>
+            </plugin>
+             -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>index</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <linksource>true</linksource>
+                    <destDir>../target/site/annotations/apidocs</destDir>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+    <distributionManagement>
+    <site>
+      <id>tapestry</id>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+    </site>
+    </distributionManagement>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/annotations/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/contrib/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/contrib/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/contrib/pom.xml (added)
+++ tapestry/tapestry4/trunk/contrib/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,76 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>contrib</artifactId>
+    <packaging>jar</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Contrib</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>framework</artifactId>
+            <version>4.1.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>jboss</groupId>
+            <artifactId>jboss-j2ee</artifactId>
+            <version>4.0.2</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+
+        <plugins>
+                <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version>
+                </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <!-- 
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>surefire-report-maven-plugin</artifactId>
+            </plugin>
+             -->
+           <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>index</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <linksource>true</linksource>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+    <distributionManagement>
+    <site>
+      <id>tapestry</id>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+    </site>
+    </distributionManagement>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/contrib/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/examples/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jun  7 10:07:53 2006
@@ -0,0 +1,2 @@
+
+target

Propchange: tapestry/tapestry4/trunk/examples/TimeTracker/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Jun  7 10:07:53 2006
@@ -2,3 +2,4 @@
 tapestry-timetrackerdb.lck
 tapestry-timetrackerdb.script
 tapestry-timetrackerdb.properties
+target

Added: tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml (added)
+++ tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,114 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>TimeTracker</artifactId>
+    <packaging>jar</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>examples</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Tapestry Core Library</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>framework</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>hivemind</groupId>
+            <artifactId>hivemind</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>hivemind</groupId>
+            <artifactId>hivemind-lib</artifactId>
+        </dependency>
+        <!-- Really, a transitive dependency of hivemind. -->
+        <dependency>
+            <groupId>oro</groupId>
+            <artifactId>oro</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jdom</groupId>
+            <artifactId>jdom</artifactId>
+            <version>1.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.9</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-dbcp</groupId>
+            <artifactId>commons-dbcp</artifactId>
+            <version>1.2.1</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+
+        <plugins>
+                <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version> 
+                <configuration>
+                    <testSourceDirectory>src/test</testSourceDirectory>
+                </configuration>
+                </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+           <!-- 
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>surefire-report-maven-plugin</artifactId>
+            </plugin>
+             -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <linksource>true</linksource>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/examples/TimeTracker/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/examples/Vlib/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Jun  7 10:07:53 2006
@@ -1,2 +1,4 @@
+
 classes
 private
+target

Added: tapestry/tapestry4/trunk/examples/Vlib/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/examples/Vlib/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/examples/Vlib/pom.xml (added)
+++ tapestry/tapestry4/trunk/examples/Vlib/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,48 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>Vlib</artifactId>
+    <packaging>jar</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>examples</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Tapestry Virtual Library</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>framework</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jboss</groupId>
+            <artifactId>jboss-j2ee</artifactId>
+            <version>4.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>VlibBeans</artifactId>
+            <version>4.1.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <plugins>
+                <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version>
+                </plugin>
+        </plugins>
+    </build>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/examples/Vlib/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tapestry/tapestry4/trunk/examples/VlibBeans/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Jun  7 10:07:53 2006
@@ -1 +1,3 @@
+
 classes
+target

Added: tapestry/tapestry4/trunk/examples/VlibBeans/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/examples/VlibBeans/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/examples/VlibBeans/pom.xml (added)
+++ tapestry/tapestry4/trunk/examples/VlibBeans/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,48 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>VlibBeans</artifactId>
+    <packaging>jar</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>examples</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Tapestry Virtual Library</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>framework</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>contrib</artifactId>
+            <version>4.1.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>jboss</groupId>
+            <artifactId>jboss-j2ee</artifactId>
+            <version>4.0.2</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <plugins>
+                <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version>
+                </plugin>
+        </plugins>
+    </build>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/examples/VlibBeans/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/examples/Workbench/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/examples/Workbench/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/examples/Workbench/pom.xml (added)
+++ tapestry/tapestry4/trunk/examples/Workbench/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,60 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>Workbench</artifactId>
+    <packaging>jar</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>examples</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Tapestry Workbench</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencies>
+        <dependency>
+            <groupId>jcharts</groupId>
+            <artifactId>jcharts</artifactId>
+            <version>0.6.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>contrib</artifactId>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version>
+            </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <!-- 
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>surefire-report-maven-plugin</artifactId>
+            </plugin>
+             -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <linksource>true</linksource>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/examples/Workbench/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/examples/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/examples/pom.xml (added)
+++ tapestry/tapestry4/trunk/examples/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,58 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>examples</artifactId>
+    <packaging>pom</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Examples</name>
+    <inceptionYear>2006</inceptionYear>
+    <modules>
+        <module>Vlib</module>
+        <module>VlibBeans</module>
+        <module>TimeTracker</module>
+        <module>Workbench</module>
+    </modules>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.tapestry</groupId>
+                <artifactId>framework</artifactId>
+                <version>4.1.0-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.tapestry</groupId>
+                <artifactId>annotations</artifactId>
+                <version>4.1.0-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.tapestry</groupId>
+                <artifactId>contrib</artifactId>
+                <version>4.1.0-SNAPSHOT</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>index</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/examples/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/framework/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/framework/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/framework/pom.xml (added)
+++ tapestry/tapestry4/trunk/framework/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,145 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>framework</artifactId>
+    <packaging>jar</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Core Library</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencies>
+        <dependency>
+            <groupId>jboss</groupId>
+            <artifactId>javassist</artifactId>
+            <!-- Override parent pom -->
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>hivemind</groupId>
+            <artifactId>hivemind</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>hivemind</groupId>
+            <artifactId>hivemind-lib</artifactId>
+        </dependency>
+        <!-- Really, a transitive dependency of hivemind. -->
+        <dependency>
+            <groupId>oro</groupId>
+            <artifactId>oro</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <!-- Override parent pom: needed at compile time. -->
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymockclassextension</artifactId>
+        </dependency>
+        <!-- Override parent pom: needed at compile time. -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>ognl</groupId>
+            <artifactId>ognl</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-fileupload</groupId>
+            <artifactId>commons-fileupload</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jdom</groupId>
+            <artifactId>jdom</artifactId>
+            <version>1.0</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.9</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+
+        <plugins>
+                <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version> 
+                <configuration>
+                    <testSourceDirectory>src/test</testSourceDirectory>
+                </configuration>
+                </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <!-- 
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>surefire-report-maven-plugin</artifactId>
+            </plugin>
+             -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>index</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <linksource>true</linksource>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+    <distributionManagement>
+    <site>
+      <id>tapestry</id>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+    </site>
+    </distributionManagement>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/framework/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/pom.xml (added)
+++ tapestry/tapestry4/trunk/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,209 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>tapestry-project</artifactId>
+    <packaging>pom</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <description>Java Web Application Framework</description>
+    <name>Tapestry</name>
+    <inceptionYear>2006</inceptionYear>
+    <url>http://tapestry.apache.org/tapestry4</url>
+    <licenses>
+        <license>
+            <name>Apache Software License 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    <organization>
+        <name>Apache Software Foundation</name>
+        <url>http://www.apache.org</url>
+    </organization>
+    <issueManagement>
+        <system>jira</system>
+        <url>http://issues.apache.org/jira/browse/TAPESTRY</url>
+    </issueManagement>
+    <scm>
+        <connection>scm:svn:https://svn.apache.org/repos/asf/tapestry/tapestry4/trunk</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/tapestry/tapestry4/trunk/</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/tapestry/tapestry4/trunk</url>
+    </scm>
+    <mailingLists>
+    <mailingList>
+      <name>Tapestry User List</name>
+      <subscribe>tapestry-users-subscribe@tapestry.apache.org</subscribe>
+      <unsubscribe>tapestry-users-unsubscribe@tapestry.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/tapestry-users/</archive>
+    </mailingList>
+    <mailingList>
+      <name>tapestry Developer List</name>
+      <subscribe>tapestry-dev-subscribe@tapestry.apache.org</subscribe>
+      <unsubscribe>tapestry-dev-unsubscribe@tapestry.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/tapestry-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Tapestry Commits List</name>
+      <subscribe>tapestry-commits-subscribe@tapestry.apache.org</subscribe>
+      <unsubscribe>tapestry-commits-unsubscribe@tapestry.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/tapestry-commits/</archive>
+    </mailingList>
+  </mailingLists>
+    <developers>
+        <developer>
+            <id>hls</id>
+            <name>Howard M. Lewis Ship</name>
+            <email>hlship@apache.org</email>
+            <url>http://howardlewisship.com</url>
+            <roles>
+                <role>Menace</role>
+            </roles>
+            <timezone>PDT</timezone>
+        </developer>
+        <developer>
+            <id>jk</id>
+            <name>Jesse Kuhnert</name>
+            <email>jkuhnert@apache.org</email>
+            <url>http://blog.opencomponentry.com</url>
+            <roles>
+                <role>Developer</role>
+            </roles>
+            <timezone>EST</timezone>
+        </developer>
+    </developers>
+    <modules>
+        <module>framework</module>
+        <module>contrib</module>
+        <module>annotations</module>
+        <module>portlet</module>
+        <module>examples</module>
+    </modules>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>jboss</groupId>
+                <artifactId>javassist</artifactId>
+                <version>3.0</version>
+                <scope>runtime</scope>
+            </dependency>
+            <dependency>
+                <groupId>hivemind</groupId>
+                <artifactId>hivemind</artifactId>
+                <version>1.1.1</version>
+                <scope>compile</scope>
+            </dependency>
+            <dependency>
+                <groupId>hivemind</groupId>
+                <artifactId>hivemind-lib</artifactId>
+                <version>1.1.1</version>
+                <scope>compile</scope>
+            </dependency>
+            <!-- Really, a transitive dependency of hivemind. -->
+            <dependency>
+                <groupId>oro</groupId>
+                <artifactId>oro</artifactId>
+                <version>2.0.8</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging</artifactId>
+                <version>1.0.4</version>
+                <!-- This is almost always provided by the container. If not, then WARs will have to
+                    create an explicit dependency. -->
+                <scope>provided</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.easymock</groupId>
+                <artifactId>easymock</artifactId>
+                <version>2.2</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.easymock</groupId>
+                <artifactId>easymockclassextension</artifactId>
+                <version>2.2</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.testng</groupId>
+                <artifactId>testng</artifactId>
+                <version>4.7</version>
+                <classifier>jdk15</classifier>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>commons-codec</groupId>
+                <artifactId>commons-codec</artifactId>
+                <version>1.3</version>
+            </dependency>
+            <dependency>
+                <groupId>ognl</groupId>
+                <artifactId>ognl</artifactId>
+                <version>2.6.7</version>
+            </dependency>
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+                <version>2.3</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-fileupload</groupId>
+                <artifactId>commons-fileupload</artifactId>
+                <version>1.1</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-beanutils</groupId>
+                <artifactId>commons-beanutils</artifactId>
+                <version>1.7.0</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-lang</groupId>
+                <artifactId>commons-lang</artifactId>
+                <version>2.1</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <configuration>
+                        <source>1.5</source>
+                        <target>1.5</target>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>project-team</report>
+                            <report>mailing-list</report>
+                            <report>cim</report>
+                            <!-- mailing-list, cim -->
+                            <report>license</report>
+                            <report>scm</report>
+                            <report>index</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+    <distributionManagement>
+    <site>
+      <id>tapestry</id>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+    </site>
+    </distributionManagement>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/portlet/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/portlet/pom.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/portlet/pom.xml (added)
+++ tapestry/tapestry4/trunk/portlet/pom.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,79 @@
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>portlet</artifactId>
+    <packaging>jar</packaging>
+    <version>4.1.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>4.1.0-SNAPSHOT</version>
+    </parent>
+    <name>Portlet</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencies>
+        <dependency>
+            <groupId>javax.portlet</groupId>
+            <artifactId>portlet-api</artifactId>
+            <version>1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tapestry</groupId>
+            <artifactId>framework</artifactId>
+            <version>4.1.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+
+        <plugins>
+                <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.2</version> 
+                <configuration>
+                    <testSourceDirectory>src/test</testSourceDirectory>
+                </configuration>
+                </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <!-- 
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>surefire-report-maven-plugin</artifactId>
+            </plugin>
+             -->
+             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>index</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <linksource>true</linksource>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+    <distributionManagement>
+    <site>
+      <id>tapestry</id>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+    </site>
+    </distributionManagement>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/portlet/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/src/site/resources/images/asf_logo_wide.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/images/asf_logo_wide.gif?rev=412455&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/src/site/resources/images/asf_logo_wide.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/src/site/resources/images/tapestry_banner.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/resources/images/tapestry_banner.gif?rev=412455&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/src/site/resources/images/tapestry_banner.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/site.xml?rev=412455&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/src/site/site.xml (added)
+++ tapestry/tapestry4/trunk/src/site/site.xml Wed Jun  7 10:07:53 2006
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project name="Apache Tapestry">
+    <bannerLeft>
+        <name>Tapestry</name>
+        <href>http://tapestry.apache.org/</href>
+        <src>images/tapestry_banner.gif</src>
+    </bannerLeft>
+    <bannerRight>
+        <name>Apache</name>
+        <href>http://www.apache.org</href>
+        <src>images/asf_logo_wide.gif</src>
+    </bannerRight>
+    <body>
+        <links>
+            <item name="Apache" href="http://www.apache.org/"/>
+        </links> 
+        
+        <menu name="Developer Info">
+            <item name="Environment" href="dev/env.html"/>
+        </menu>
+        
+        <menu ref="modules" />
+        
+        ${reports} 
+    </body>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native