Author: apetrelli
Date: Tue Mar 2 20:01:06 2010
New Revision: 918165
URL: http://svn.apache.org/viewvc?rev=918165&view=rev
Log:
TILESSB-25
Created CreateDescriptorMojo.
Added to tiles-template to test it.
Modified:
tiles/sandbox/trunk/tiles3/tiles-template/pom.xml
Modified: tiles/sandbox/trunk/tiles3/tiles-template/pom.xml
URL:
http://svn.apache.org/viewvc/tiles/sandbox/trunk/tiles3/tiles-template/pom.xml?rev=918165&r1=918164&r2=918165&view=diff
==============================================================================
--- tiles/sandbox/trunk/tiles3/tiles-template/pom.xml (original)
+++ tiles/sandbox/trunk/tiles3/tiles-template/pom.xml Tue Mar 2 20:01:06 2010
@@ -32,6 +32,22 @@
<groupId>org.apache.tiles</groupId>
<version>3.0.0-SNAPSHOT</version>
</parent>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.tiles.autotag.plugin</groupId>
+ <artifactId>maven-autotag-plugin</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>create-descriptor</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
<dependencies>
<dependency>
<groupId>org.apache.tiles</groupId>
@@ -66,9 +82,9 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.apache.tiles</groupId>
- <artifactId>tiles-autotag-core-runtime</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <groupId>org.apache.tiles</groupId>
+ <artifactId>tiles-autotag-core-runtime</artifactId>
+ <version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>