/pom.xml
http://struts2yuiplugin.googlecode.com/ · XML · 102 lines · 88 code · 10 blank · 4 comment · 0 complexity · 3894f8dc1f928e71c1df76d1f3d517b7 MD5 · raw file
- <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>com.googlecode.struts2yuiplugin</groupId>
- <artifactId>struts2yuiplugin</artifactId>
- <packaging>jar</packaging>
- <version>0.1-ALPHA-7</version>
- <name>struts2yuiplugin</name>
- <url>http://code.google.com/p/struts2yuiplugin/</url>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.myfaces.tobago</groupId>
- <artifactId>maven-apt-plugin</artifactId>
- <configuration>
- <A>
- uri=/struts-yui-tags,tlibVersion=2.2.3,jspVersion=1.2,shortName=yui,displayName="Struts
- YUI Tags",
- outFile=${basedir}/target/classes/META-INF/struts-yui-tags.tld,
- description="Struts tags based on YUI.",
- outTemplatesDir=${basedir}/src/main/gen
- </A>
- <resourceTargetPath>target</resourceTargetPath>
- <fork>false</fork>
- <force>true</force>
- <nocompile>true</nocompile>
- <showWarnings>true</showWarnings>
- <factory>
- org.apache.struts.annotations.taglib.apt.TLDAnnotationProcessorFactory
- </factory>
- <target>1.5</target>
- <includes>
- <include>**/*.java</include>
- </includes>
- </configuration>
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>execute</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <defaultGoal>install</defaultGoal>
- </build>
-
- <dependencies>
-
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.0.4</version>
- </dependency>
-
- <!-- Core -->
-
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.struts</groupId>
- <artifactId>struts-annotations</artifactId>
- <version>1.0.4</version>
- <optional>true</optional>
- </dependency>
-
- <!-- JSP API -->
-
- <!-- struts-annotations must be in compile scope for maven-apt-plugin to
- function correctly. Marking it optional to exclude it from transitive dependency resolution -->
- <dependency>
- <groupId>org.apache.struts</groupId>
- <artifactId>struts2-core</artifactId>
- <version>2.1.8.1</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity</artifactId>
- <version>1.5</version>
- <scope>compile</scope>
- </dependency>
-
-
-
- </dependencies>
- </project>