blob: 3239fb94c2ee7276b0ef6012518609f4345f3897 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<project>
<extend>${basedir}/../project.xml</extend>
<name>Pluto Portlet Container</name>
<id>pluto</id>
<organization>
<logo>/../../images/apache-portals.gif</logo>
</organization>
<logo>/../../images/pluto.png</logo>
<shortDescription>A JSR-168 Compliant Portlet Engine.</shortDescription>
<description>
Pluto is the Reference Implementation of the Java
Portlet Specfication. Portlets are designed to run
in the context of a portal. They are written to the
Portlet API which are similar to the Servlet API.
A portlet container provides a runtime environment
for portlets implemented according to the Portlet
API. In this environment portlets can be instantiated,
used and finally destroyed. The portlet container is
not a stand-alone container like the servlet container;
instead it is implemented as a thin layer on top of
the servlet container and reuses the functionality
provided by the servlet container.
</description>
<dependencies>
<dependency>
<id>portlet-api</id>
<groupId>portlet-api</groupId>
<version>1.0</version>
<properties>
<war.bundle.jar>false</war.bundle.jar>
</properties>
</dependency>
<dependency>
<id>servletapi</id>
<version>2.3</version>
<properties>
<war.bundle.jar>false</war.bundle.jar>
</properties>
</dependency>
<dependency>
<groupId>pluto</groupId>
<artifactId>pluto-binding</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<id>commons-logging</id>
<version>1.0.4</version>
</dependency>
</dependencies>
<build>
<nagEmailAddress>pluto-dev@jakarta.apache.org</nagEmailAddress>
<sourceDirectory>src/java</sourceDirectory>
<aspectSourceDirectory/>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
</unitTest>
<integrationUnitTestSourceDirectory>src/rttest</integrationUnitTestSourceDirectory>
<integrationUnitTest>
<includes>
<include>**/*Test.java</include>
</includes>
</integrationUnitTest>
<resources>
<resource>
<directory>src/conf</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
<jars/>
</build>
</project>