<?xml version="1.0" encoding="UTF-8"?> <!-- 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. $Id: pom.xml 765893 2009-04-17 08:05:43Z woonsan $ --> <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> <!-- POM Identification --> <parent> <groupId>org.apache.portals</groupId> <artifactId>applications-pom</artifactId> <version>1.3</version> </parent> <groupId>org.apache.portals.applications</groupId> <artifactId>apa-webcontent2</artifactId> <version>2.0</version> <packaging>pom</packaging> <name>Apache Portals Applications Web Content 2 Application</name> <description>Web Content 2 Application</description> <properties> <portals.portlet2-api-spec.version>1.0</portals.portlet2-api-spec.version> <javax.servlet.version>2.4</javax.servlet.version> <org.apache.portals.bridges.common.version>2.1</org.apache.portals.bridges.common.version> <org.apache.portals.bridges.velocity.version>2.1</org.apache.portals.bridges.velocity.version> <slf4j.version>1.5.6</slf4j.version> <junit.version>4.11</junit.version> <easymock.version>3.2</easymock.version> <htmlcleaner.version>2.8</htmlcleaner.version> <httpcomponents-httpcore.version>4.4</httpcomponents-httpcore.version> <httpcomponents-httpclient.version>4.3.6</httpcomponents-httpclient.version> <jcip-annotations.version>1.0</jcip-annotations.version> <commons-lang.version>2.6</commons-lang.version> <commons-io.version>2.4</commons-io.version> <commons-beanutils.version>1.9.2</commons-beanutils.version> <commons-chain.version>1.2</commons-chain.version> <velocity.version>1.6.4</velocity.version> <velocity-tools.version>1.3</velocity-tools.version> <snakeyaml.version>1.13</snakeyaml.version> <nekohtml.version>0.9.5</nekohtml.version> <castor.version>1.1.1</castor.version> <maven-jetty-plugin.version>6.1.10</maven-jetty-plugin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.portals</groupId> <artifactId>portlet-api_2.0_spec</artifactId> <version>${portals.portlet2-api-spec.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>${javax.servlet.version}</version> </dependency> <dependency> <groupId>org.apache.portals.bridges</groupId> <artifactId>portals-bridges-common</artifactId> <version>${org.apache.portals.bridges.common.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.portals.bridges</groupId> <artifactId>portals-bridges-velocity</artifactId> <version>${org.apache.portals.bridges.velocity.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <exclusion> <groupId>velocity</groupId> <artifactId>velocity</artifactId> </exclusion> <exclusion> <groupId>velocity-tools</groupId> <artifactId>velocity-tools</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${snakeyaml.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>net.sourceforge.htmlcleaner</groupId> <artifactId>htmlcleaner</artifactId> <version>${htmlcleaner.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>${httpcomponents-httpcore.version}</version> </dependency> <!-- jcip-annotations is required to compile with httpclient and Java 1.5. See HTTPCLIENT-866. --> <dependency> <groupId>net.jcip</groupId> <artifactId>jcip-annotations</artifactId> <version>${jcip-annotations.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${httpcomponents-httpclient.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>${commons-lang.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>${commons-beanutils.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-chain</groupId> <artifactId>commons-chain</artifactId> <version>${commons-chain.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>${easymock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>${velocity.version}</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-tools</artifactId> <version>${velocity-tools.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <exclusion> <groupId>velocity</groupId> <artifactId>velocity</artifactId> </exclusion> <exclusion> <groupId>sslext</groupId> <artifactId>sslext</artifactId> </exclusion> <exclusion> <groupId>struts</groupId> <artifactId>struts</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>nekohtml</groupId> <artifactId>nekohtml</artifactId> <version>${nekohtml.version}</version> </dependency> <dependency> <groupId>org.codehaus.castor</groupId> <artifactId>castor</artifactId> <version>${castor.version}</version> <exclusions> <!-- we only use/need the XML handling: excluding all other, non-test, dependencies --> <exclusion> <groupId>cglib</groupId> <artifactId>cglib-full</artifactId> </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <exclusion> <groupId>oro</groupId> <artifactId>oro</artifactId> </exclusion> <exclusion> <groupId>jakarta-regexp</groupId> <artifactId>jakarta-regexp</artifactId> </exclusion> <exclusion> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> </exclusion> <exclusion> <groupId>ldapsdk</groupId> <artifactId>ldapsdk</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> <exclusion> <groupId>xerces</groupId> <artifactId>xerces</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> <!-- Application Modules --> <modules> <module>content-rewriter</module> <module>reverse-proxy</module> <module>portlets</module> <module>war</module> </modules> <!-- Project Information --> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/portals/applications/webcontent/tags/apa-webcontent2-2.0</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/applications/webcontent/tags/apa-webcontent2-2.0</developerConnection> <url>http://svn.apache.org/viewcvs.cgi/portals/applications/webcontent/tags/apa-webcontent2-2.0</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <aggregate>true</aggregate> <groups> <group> <title>Apache Portals Application Web Content 2 - Content Rewriter Module</title> <packages>org.apache.portals.applications.webcontent2.rewriter*</packages> </group> <group> <title>Apache Portals Application Web Content 2 - Reverse Proxy Module</title> <packages>org.apache.portals.applications.webcontent2.proxy*</packages> </group> <group> <title>Apache Portals Application Web Content 2 - Portlets Module</title> <packages>org.apache.portals.applications.webcontent2.portlet*</packages> </group> </groups> <links> <link>http://htmlcleaner.sourceforge.net/doc/</link> </links> </configuration> <executions> <execution> <id>aggregate</id> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> <configuration> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>