blob: 3cf6ced07dac2fab99e0b7606b403e38f5621be3 [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright 2004 The Apache Software Foundation.
Licensed 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.
-->
<!--
EXPERIMENTAL Maven build
[TODO]
* Incorporate proposal documentation into site.
* Refine project XML so that it builds a respectable project site.
* Add developers guide, when available.
$Id: $
-->
<project>
<pomVersion>3</pomVersion>
<id>shale</id>
<name>shale</name>
<currentVersion>0.0.1</currentVersion>
<organization>
<name>Apache Software Foundation</name>
<url>http://struts.apache.org/</url>
</organization>
<inceptionYear>2004</inceptionYear>
<package>org.apache.shale</package>
<!-- Gump integration -->
<gumpRepositoryId>jakarta</gumpRepositoryId>
<description>
Shale divides the controller into individual layers,
whose features may be composed in appropriate combinations based on the requirements of a particular application.
</description>
<shortDescription>Shale web controller framework for JavaServer Faces</shortDescription>
<url>http://struts.apache.org/</url>
<issueTrackingUrl>
http://jakarta.apache.org/site/bugs.html
</issueTrackingUrl>
<siteAddress>struts.apache.org</siteAddress>
<siteDirectory>
/www/struts.apache.org/
</siteDirectory>
<distributionDirectory>
/www/svn.apache.org/builds/struts
</distributionDirectory>
<repository>
<connection>
scm|svn|https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts-shale
</connection>
<url>
http://svn.apache.org/viewcvs.cgi/struts/sandbox/trunk/struts-shale?root=Apache-SVN
</url>
</repository>
<versions>
<version>
<id>0.0.1</id>
<name>0.0.1</name>
<tag>SHALE_0_0_1</tag>
</version>
</versions>
<mailingLists>
<mailingList>
<name>Struts User List</name>
<subscribe>
users-subscribe@struts.apache.org
</subscribe>
<unsubscribe>
users-unsubscribe@struts.apache.org
</unsubscribe>
<archive>
http://www.mail-archive.com/users@struts.apache.org/
</archive>
</mailingList>
<mailingList>
<name>Struts Developer List</name>
<subscribe>
dev-subscribe@struts.apache.org
</subscribe>
<unsubscribe>
dev-unsubscribe@struts.apache.org
</unsubscribe>
<archive>
http://www.mail-archive.com/dev@struts.apache.org/
</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<name>Craig R. McClanahan</name>
<id>craigmcc</id>
<email>craigmcc@apache.org</email>
<organization></organization>
</developer>
<developer>
<name>Ted Husted</name>
<id>husted</id>
<email>husted@apache.org</email>
<organization></organization>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>tomcat</groupId>
<artifactId>servlet-api</artifactId>
<version>5.0.28</version>
<url>http://jakarta.apache.org/tomcat/</url>
<properties>
<war.bundle>false</war.bundle>
</properties>
</dependency>
<!--
<dependency>
<groupId>servletapi</groupId>
<artifactId>servletapi</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>myfaces</groupId>
<artifactId>myfaces-jsf-api</artifactId>
<version>1.0.7</version>
<url>http://myfaces.org/</url>
</dependency>
<dependency>
<groupId>myfaces</groupId>
<artifactId>myfaces</artifactId>
<version>1.0.7</version>
<url>http://myfaces.org/</url>
</dependency>
-->
<dependency>
<groupId>jsf</groupId>
<artifactId>jsf-api</artifactId>
<version>1.1</version>
<url>http://java.sun.com/j2ee/javaserverfaces/download.html</url>
</dependency>
<dependency>
<groupId>jsf</groupId>
<artifactId>jsf-impl</artifactId>
<version>1.1</version>
<url>http://java.sun.com/j2ee/javaserverfaces/download.html</url>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
<build>
<nagEmailAddress>
dev@struts.apache.org
</nagEmailAddress>
<sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<aspectSourceDirectory/>
<!-- Unit test cases -->
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
</unitTest>
<!-- J A R R E S O U R C E S -->
<!-- Resources that are packaged up inside the JAR file -->
<resources/>
</build>
</project>