mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
dfa8ebd69b
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@941381 13f79535-47bb-0310-9956-ffa450edef68
72 lines
2.7 KiB
XML
72 lines
2.7 KiB
XML
<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>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-plugins</artifactId>
|
|
<version>2.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-gxp-plugin</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Struts 2 GXP Plugin</name>
|
|
<url>http://struts.apache.org</url>
|
|
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2-gxp-plugin</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2-gxp-plugin</developerConnection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/struts/sandbox/trunk/struts2-gxp-plugin</url>
|
|
</scm>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-core</artifactId>
|
|
<version>2.2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!--
|
|
Until GXP is added to the Google Maven Repository in early 2010 (http://code.google.com/p/gxp/issues/detail?id=5)
|
|
Download http://gxp.googlecode.com/files/gxp-0.2.4-beta.jar
|
|
Run the following at the command line (do not use WindowsPowershell)
|
|
mvn install:install-file -DgroupId=com.google -DartifactId=gxp -Dversion=0.2.4-BETA -Dpackaging=jar -Dfile=gxp-0.2.4-beta.jar
|
|
-->
|
|
<dependency>
|
|
<groupId>com.google</groupId>
|
|
<artifactId>gxp</artifactId>
|
|
<version>0.2.4-BETA</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.collections</groupId>
|
|
<artifactId>google-collections</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|