You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2006/11/21 04:58:56 UTC

svn commit: r477495 - in /tapestry/tapestry5/tapestry-ioc/trunk: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/tapestry/ src/main/java/org/apache/tapestry/ioc/ src/main/resources/ src/test/ src/t...

Author: hlship
Date: Mon Nov 20 19:58:56 2006
New Revision: 477495

URL: http://svn.apache.org/viewvc?view=rev&rev=477495
Log: (empty)

Added:
    tapestry/tapestry5/tapestry-ioc/trunk/.classpath
    tapestry/tapestry5/tapestry-ioc/trunk/.project
    tapestry/tapestry5/tapestry-ioc/trunk/pom.xml
    tapestry/tapestry5/tapestry-ioc/trunk/src/
    tapestry/tapestry5/tapestry-ioc/trunk/src/main/
    tapestry/tapestry5/tapestry-ioc/trunk/src/main/java/
    tapestry/tapestry5/tapestry-ioc/trunk/src/main/java/org/
    tapestry/tapestry5/tapestry-ioc/trunk/src/main/java/org/apache/
    tapestry/tapestry5/tapestry-ioc/trunk/src/main/java/org/apache/tapestry/
    tapestry/tapestry5/tapestry-ioc/trunk/src/main/java/org/apache/tapestry/ioc/
    tapestry/tapestry5/tapestry-ioc/trunk/src/main/resources/
    tapestry/tapestry5/tapestry-ioc/trunk/src/test/
    tapestry/tapestry5/tapestry-ioc/trunk/src/test/java/

Added: tapestry/tapestry5/tapestry-ioc/trunk/.classpath
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-ioc/trunk/.classpath?view=auto&rev=477495
==============================================================================
--- tapestry/tapestry5/tapestry-ioc/trunk/.classpath (added)
+++ tapestry/tapestry5/tapestry-ioc/trunk/.classpath Mon Nov 20 19:58:56 2006
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src/main/java"/>
+	<classpathentry kind="src" path="src/test/java"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="lib" path="src/main/resources"/>
+	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>

Added: tapestry/tapestry5/tapestry-ioc/trunk/.project
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-ioc/trunk/.project?view=auto&rev=477495
==============================================================================
--- tapestry/tapestry5/tapestry-ioc/trunk/.project (added)
+++ tapestry/tapestry5/tapestry-ioc/trunk/.project Mon Nov 20 19:58:56 2006
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>tapestry-ioc</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<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>
+	</natures>
+</projectDescription>

Added: tapestry/tapestry5/tapestry-ioc/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-ioc/trunk/pom.xml?view=auto&rev=477495
==============================================================================
--- tapestry/tapestry5/tapestry-ioc/trunk/pom.xml (added)
+++ tapestry/tapestry5/tapestry-ioc/trunk/pom.xml Mon Nov 20 19:58:56 2006
@@ -0,0 +1,134 @@
+<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-ioc</artifactId>
+    <packaging>jar</packaging>
+    <version>5.0.0-SNAPSHOT</version>
+    <!-- This should change to tapestry-project -->
+    <parent>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>tapestry-project</artifactId>
+        <version>5.0.0-SNAPSHOT</version>
+        <relativePath>../tapestry-project/pom.xml</relativePath>
+    </parent>
+    <name>Tapestry Inversion of Control Container</name>
+    <inceptionYear>2006</inceptionYear>
+    <url>http://tapestry.apache.org/tapestry5/tapestry-ioc/</url>
+    <dependencies>
+        <dependency>
+            <groupId>javassist</groupId>
+            <artifactId>javassist</artifactId>
+            <!-- Override parent pom -->
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>1.3</version>
+        </dependency>
+        <!-- Override parent pom: needed at compile time. -->
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <!-- Override parent pom: needed at compile time. -->
+        <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <!-- Looks like if you override scope, you have to provide version (and classifier) as well.
+                Or perhaps this has something to do with classifier. -->
+            <version>5.1</version>
+            <classifier>jdk15</classifier>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.openqa.selenium.client-drivers</groupId>
+            <artifactId>selenium-java-client-driver</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.openqa.selenium.server</groupId>
+            <artifactId>selenium-server</artifactId>
+        </dependency>
+        <!-- 
+        <dependency>
+            <groupId>org.mortbay.jetty</groupId>
+            <artifactId>jetty</artifactId>
+            <version>6.0.0beta10</version>
+            <classifier>standalone</classifier>
+            <scope>test</scope>
+        </dependency> -->
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <suiteXmlFiles>
+                        <suiteXmlFile>src/test/conf/testng.xml</suiteXmlFile>
+                    </suiteXmlFiles>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                    <optimize>true</optimize>
+                    <verbose>true</verbose>
+                </configuration>
+            </plugin>          
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <!-- Had a classloader problem with version 2.0.3 -->
+                <!--        <version>2.0</version> -->
+                <configuration>
+                    <!--
+                    <tags>
+                        <tag>
+                            <name>todo</name>
+                            <!- - Should be a combinaison of the letters Xaoptcmf - ->
+                            <placement>a</placement>
+                            <head>To do something:</head>
+                        </tag>
+                    </tags> -->
+                    <linksource>true</linksource>
+                    <links>
+                        <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                        <link>http://java.sun.com/j2ee/1.4/docs/api/</link>
+                        <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+                    </links>
+                    <stylesheetfile>${basedir}/src/site/resources/css/jdstyle.css</stylesheetfile>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>cobertura-maven-plugin</artifactId>
+            </plugin> 
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+             </plugin>
+        </plugins>
+    </reporting>
+</project>