Author: hlship
Date: Sun Feb 18 11:37:46 2007
New Revision: 508957
URL: http://svn.apache.org/viewvc?view=rev&rev=508957
Log: (empty)
Added:
tapestry/tapestry5/tapestry-component-report/trunk/.classpath
tapestry/tapestry5/tapestry-component-report/trunk/.project
tapestry/tapestry5/tapestry-component-report/trunk/pom.xml
tapestry/tapestry5/tapestry-component-report/trunk/src/
tapestry/tapestry5/tapestry-component-report/trunk/src/main/
tapestry/tapestry5/tapestry-component-report/trunk/src/main/java/
tapestry/tapestry5/tapestry-component-report/trunk/src/main/java/org/
tapestry/tapestry5/tapestry-component-report/trunk/src/main/java/org/apache/
Added: tapestry/tapestry5/tapestry-component-report/trunk/.classpath
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-component-report/trunk/.classpath?view=auto&rev=508957
==============================================================================
--- tapestry/tapestry5/tapestry-component-report/trunk/.classpath (added)
+++ tapestry/tapestry5/tapestry-component-report/trunk/.classpath Sun Feb 18
11:37:46 2007
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src/main/java"/>
+ <classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="con"
path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Added: tapestry/tapestry5/tapestry-component-report/trunk/.project
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-component-report/trunk/.project?view=auto&rev=508957
==============================================================================
--- tapestry/tapestry5/tapestry-component-report/trunk/.project (added)
+++ tapestry/tapestry5/tapestry-component-report/trunk/.project Sun Feb 18
11:37:46 2007
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>tapestry-component-report</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-component-report/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-component-report/trunk/pom.xml?view=auto&rev=508957
==============================================================================
--- tapestry/tapestry5/tapestry-component-report/trunk/pom.xml (added)
+++ tapestry/tapestry5/tapestry-component-report/trunk/pom.xml Sun Feb 18
11:37:46 2007
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-component-report</artifactId>
+ <packaging>maven-plugin</packaging>
+ <name>Tapestry Component Parameters Report</name>
+ <version>5.0.2-SNAPSHOT</version>
+ <description>Generates component parameter documentaton for Tapestry
components, mixins (and
+ base classes)</description>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <optimize>true</optimize>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+
+ <!-- Copied from the maven javadoc plugin, for what's its worth. -->
+
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-project</artifactId>
+ <version>2.0.2</version>
+ <exclusions>
+ <!-- Using org.codehaus.plexus:plexus-utils instead of
+ -->
+ <exclusion>
+ <groupId>plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <version>2.0.2</version>
+ <exclusions>
+ <!-- Using org.codehaus.plexus:plexus-utils instead of
+ -->
+ <exclusion>
+ <groupId>plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ <version>1.2</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-descriptor</artifactId>
+ <version>2.0</version>
+ </dependency>
+
+
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <version>2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven.reporting</groupId>
+ <artifactId>maven-reporting-impl</artifactId>
+ <version>2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven.doxia</groupId>
+ <artifactId>doxia-site-renderer</artifactId>
+ <version>1.0-alpha-8</version>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-ioc</artifactId>
+ <version>5.0.2-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>xom</groupId>
+ <artifactId>xom</artifactId>
+ <version>1.1</version>
+ </dependency>
+ </dependencies>
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-plugin-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+</project>
\ No newline at end of file