mirror of
https://github.com/apache/struts.git
synced 2026-08-28 01:46:57 +00:00
f2f5cce876
All of the example apps require both struts-core and Spring. git-svn-id: https://svn.apache.org/repos/asf/struts/action2/trunk@410010 13f79535-47bb-0310-9956-ffa450edef68
82 lines
2.5 KiB
XML
82 lines
2.5 KiB
XML
<?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>
|
|
<groupId>org.apache.struts.action2</groupId>
|
|
<artifactId>struts-apps</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>org.apache.struts.action2</groupId>
|
|
<artifactId>struts-showcase</artifactId>
|
|
<packaging>war</packaging>
|
|
<name>Showcase Webapp</name>
|
|
<profiles>
|
|
<profile>
|
|
<id>hostedqa</id>
|
|
<properties>
|
|
<resourceId>12</resourceId>
|
|
<suiteId>9</suiteId>
|
|
<clientConfigs>8</clientConfigs>
|
|
<appConfigs>7</appConfigs>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>opensymphony</groupId>
|
|
<artifactId>sitemesh</artifactId>
|
|
<version>2.2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>uk.ltd.getahead</groupId>
|
|
<artifactId>dwr</artifactId>
|
|
<version>1.1-beta-3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.myfaces.core</groupId>
|
|
<artifactId>myfaces-impl</artifactId>
|
|
<version>1.1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.myfaces.core</groupId>
|
|
<artifactId>myfaces-api</artifactId>
|
|
<version>1.1.2</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>maven-jetty6-plugin</artifactId>
|
|
<configuration>
|
|
<scanIntervalSeconds>10</scanIntervalSeconds>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-j2ee_1.4_spec</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|