Author: hlship
Date: Thu May  4 12:24:10 2006
New Revision: 399829

URL: http://svn.apache.org/viewcvs?rev=399829&view=rev
Log:
Initial check in.

Added:
    tapestry/tapestry5/tapestry-project/trunk/.project
    tapestry/tapestry5/tapestry-project/trunk/pom.xml

Added: tapestry/tapestry5/tapestry-project/trunk/.project
URL: 
http://svn.apache.org/viewcvs/tapestry/tapestry5/tapestry-project/trunk/.project?rev=399829&view=auto
==============================================================================
--- tapestry/tapestry5/tapestry-project/trunk/.project (added)
+++ tapestry/tapestry5/tapestry-project/trunk/.project Thu May  4 12:24:10 2006
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>tapestry-project</name>
+       <comment></comment>
+       <projects>
+       </projects>
+       <buildSpec>
+       </buildSpec>
+       <natures>
+       </natures>
+</projectDescription>

Added: tapestry/tapestry5/tapestry-project/trunk/pom.xml
URL: 
http://svn.apache.org/viewcvs/tapestry/tapestry5/tapestry-project/trunk/pom.xml?rev=399829&view=auto
==============================================================================
--- tapestry/tapestry5/tapestry-project/trunk/pom.xml (added)
+++ tapestry/tapestry5/tapestry-project/trunk/pom.xml Thu May  4 12:24:10 2006
@@ -0,0 +1,101 @@
+<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>5.0.0-SNAPSHOT</version>
+    <name>Tapestry Project</name>
+    <inceptionYear>2006</inceptionYear>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>javassist</groupId>
+                <artifactId>javassist</artifactId>
+                <version>3.1</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>
+                <scope>runtime</scope>
+            </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.0</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>aspectj</groupId>
+                <artifactId>aspectjrt</artifactId>
+                <version>1.5.0</version>
+                <scope>compile</scope>
+            </dependency>
+            <!-- Now, artifacts created by Tapestry sub-projects. -->
+            <dependency>
+                <groupId>org.apache.tapestry</groupId>
+                <artifactId>tapestry-core</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+    <!--
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>aspectj-maven-plugin</artifactId>
+                <configuration>
+                    <complianceLevel>1.5</complianceLevel>
+                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>compile</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    -->
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to