Files
struts/api/pom.xml
T

47 lines
1.7 KiB
XML
Raw Normal View History

2006-04-26 23:27:46 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
2006-07-02 00:23:12 +00:00
<groupId>org.apache.struts</groupId>
<artifactId>struts2-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
2006-04-26 23:27:46 +00:00
</parent>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-api</artifactId>
2006-04-26 23:27:46 +00:00
<packaging>jar</packaging>
2006-06-30 23:20:38 +00:00
<name>Struts 2 API</name>
2006-04-26 23:27:46 +00:00
<dependencies>
2006-05-03 22:22:02 +00:00
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
2006-05-03 22:22:02 +00:00
<scope>test</scope>
2006-07-07 05:43:56 +00:00
<!-- has to be compile for StrutsTestCase, which is part of the base package so others can write unit tests -->
2006-05-03 22:22:02 +00:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
2006-05-22 13:47:57 +00:00
<version>2.0</version>
2006-05-03 22:22:02 +00:00
</dependency>
2006-04-26 23:27:46 +00:00
</dependencies>
2006-05-03 22:22:02 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<showPackage>false</showPackage>
</configuration>
</plugin>
</plugins>
</build>
2006-04-26 23:27:46 +00:00
</project>