JForum Portlet project.xml
project.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/3.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd">
<!-- ================================================================== -->
<!-- Standard project information -->
<!-- ================================================================== -->
<artifactId>jforum-portlet</artifactId>
<name>jforum-portlet</name>
<groupId>Jahia</groupId>
<currentVersion>1.0 Beta</currentVersion>
<inceptionYear>2005</inceptionYear>
<url/>
<!-- ================================================================== -->
<!-- Library and artifact dependencies -->
<!-- ================================================================== -->
<dependencies>
<!-- ================================================================== -->
<!-- These should not be bundled with the WAR. They are expected -->
<!-- to be available through the container class loader. -->
<!-- ================================================================== -->
<dependency>
<type>jar</type>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<type>jar</type>
<groupId>servletapi</groupId>
<artifactId>servletapi</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<type>jar</type>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<type>jar</type>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.6.2</version>
</dependency>
<dependency>
<type>jar</type>
<groupId>portlet-api</groupId>
<artifactId>portlet-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<type>jar</type>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.11</version>
</dependency>
<!-- ================================================================== -->
<!-- These should be bundled with the WAR -->
<!-- ================================================================== -->
<dependency>
<type>jar</type>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.1</version>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<type>jar</type>
<groupId>freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.3</version>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<type>jar</type>
<groupId>htmlparser</groupId>
<artifactId>htmlparser</artifactId>
<version>1.5</version>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<type>jar</type>
<groupId>javamail</groupId>
<artifactId>mailapi</artifactId>
<version>1.3.2</version>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<type>jar</type>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.0</version>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<type>jar</type>
<groupId>activation</groupId>
<artifactId>activation</artifactId>
<version>1.0.2</version>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
</dependencies>
<!-- ================================================================== -->
<!-- Build information -->
<!-- ================================================================== -->
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<!-- ================================================================== -->
<!-- ================================================================== -->
<resource>
<directory>src</directory>
<targetPath/>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
</build>
</project>