2006-09-24 02:27:41 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2007-07-29 16:18:28 +00:00
|
|
|
<!--
|
|
|
|
|
/*
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
|
* distributed with this work for additional information
|
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
|
* to you under the Apache License, Version 2.0 (the
|
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
|
* with the License. You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
|
* under the License.
|
|
|
|
|
*/
|
|
|
|
|
-->
|
2007-09-10 23:55:54 +00:00
|
|
|
<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">
|
2006-09-24 02:27:41 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-parent</artifactId>
|
2007-09-12 23:34:52 +00:00
|
|
|
<version>2.0.10</version>
|
2006-09-24 02:27:41 +00:00
|
|
|
</parent>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
2006-09-27 05:59:22 +00:00
|
|
|
<artifactId>struts2-plugins</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<name>Struts Plugins</name>
|
2006-11-03 10:41:55 +00:00
|
|
|
|
|
|
|
|
<scm>
|
2007-09-10 23:56:19 +00:00
|
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/plugins/</connection>
|
|
|
|
|
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/plugins/</developerConnection>
|
|
|
|
|
<url>http://svn.apache.org/repos/asf/struts/struts2/trunk/plugins/</url>
|
2006-11-03 10:41:55 +00:00
|
|
|
</scm>
|
|
|
|
|
|
2006-09-27 05:59:22 +00:00
|
|
|
<modules>
|
2006-11-19 05:03:10 +00:00
|
|
|
<module>codebehind</module>
|
2006-10-09 03:19:57 +00:00
|
|
|
<module>config-browser</module>
|
2006-09-27 05:59:22 +00:00
|
|
|
<module>jasperreports</module>
|
|
|
|
|
<module>jfreechart</module>
|
2006-09-27 06:19:05 +00:00
|
|
|
<module>jsf</module>
|
2006-10-09 03:19:57 +00:00
|
|
|
<module>pell-multipart</module>
|
2006-09-29 06:07:49 +00:00
|
|
|
<module>plexus</module>
|
2006-10-09 03:19:57 +00:00
|
|
|
<module>sitegraph</module>
|
2006-09-29 06:07:49 +00:00
|
|
|
<module>sitemesh</module>
|
2006-11-14 12:15:13 +00:00
|
|
|
<module>spring</module>
|
|
|
|
|
<module>struts1</module>
|
2006-09-29 06:07:49 +00:00
|
|
|
<module>tiles</module>
|
2006-09-27 05:59:22 +00:00
|
|
|
</modules>
|
2007-02-19 01:33:07 +00:00
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
<dependencies>
|
2006-09-27 05:59:22 +00:00
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-core</artifactId>
|
|
|
|
|
<version>${pom.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2006-09-27 05:59:22 +00:00
|
|
|
<!-- Test dependencies -->
|
2006-09-24 02:27:41 +00:00
|
|
|
<dependency>
|
2006-09-27 05:59:22 +00:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
<!-- has to be compile for StrutsTestCase, which is part of the base package so others can write unit tests -->
|
|
|
|
|
<optional>true</optional>
|
2006-09-24 02:27:41 +00:00
|
|
|
</dependency>
|
2006-09-27 05:59:22 +00:00
|
|
|
|
|
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
<dependency>
|
2006-09-27 05:59:22 +00:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<scope>provided</scope>
|
2006-09-24 02:27:41 +00:00
|
|
|
</dependency>
|
2006-09-27 05:59:22 +00:00
|
|
|
|
|
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
</dependencies>
|
2007-02-19 01:33:07 +00:00
|
|
|
|
2007-07-29 16:18:28 +00:00
|
|
|
<reporting>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>rat-maven-plugin</artifactId>
|
|
|
|
|
<version>1.0-alpha-2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>pom.xml</include>
|
|
|
|
|
<include>src/**</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</reporting>
|
|
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
</project>
|