blob: 4412469a090232c94d3e63c157683be8cd9ab7ac [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
~ 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.
-->
<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>
<packaging>pom</packaging>
<modules>
<module>core</module>
<module>jdk</module>
<module>asm4</module>
<module>javassist</module>
<module>cglib</module>
<module>build-tools</module>
<module>test</module>
</modules>
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>25</version>
</parent>
<artifactId>commons-proxy2-parent</artifactId>
<version>2.0-SNAPSHOT</version>
<name>Commons Proxy Parent</name>
<description>Java library for dynamic proxying</description>
<url>http://commons.apache.org/proxy/</url>
<inceptionYear>2005</inceptionYear>
<issueManagement>
<system>JIRA</system>
<url>http://issues.apache.org/jira/browse/PROXY</url>
</issueManagement>
<developers>
<developer>
<id>jcarman</id>
<name>James Carman</name>
<email>james@carmanconsulting.com</email>
<organization>Carman Consulting, Inc.</organization>
<roles>
<role>admin</role>
<role>designer</role>
<role>developer</role>
</roles>
<url>http://www.carmanconsulting.com/</url>
<timezone>-5</timezone>
</developer>
<developer>
<id>knut</id>
<name>Knut Wannheden</name>
<email>knut@apache.org</email>
<roles>
<role>designer</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<name>J&#246;rg Hohwiller</name>
<email>hohwille@users.sourceforge.net</email>
<organization/>
<roles>
<role>mavenizer</role>
<role>developer</role>
</roles>
<url></url>
</developer>
<developer>
<name>Matt Benson</name>
<email>mbenson@apache.org</email>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Howard M. Lewis Ship</name>
<email>hlship@apache.org</email>
<organization/>
<roles>
<role>advisor</role>
</roles>
<url>http://www.howardlewisship.com/</url>
</contributor>
<contributor>
<name>J&#246;rg Schaible</name>
<email>joerg.schaible@gmx.de</email>
<organization/>
<roles>
<role>advisor</role>
</roles>
</contributor>
<contributor>
<name>Mark Struberg</name>
</contributor>
<contributor>
<name>Romain Manni-Bucau</name>
</contributor>
</contributors>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/proxy/trunk/</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/proxy/trunk/</developerConnection>
<url>http://svn.apache.org/repos/asf/commons/proper/proxy/trunk/</url>
</scm>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
<descriptor>src/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>commons-proxy2-build-tools</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>org/apache/commons/proxy2/checkstyle.xml</configLocation>
<headerLocation>org/apache/commons/proxy2/license-header.txt</headerLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<linksource>true</linksource>
<links>
<link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
<link>http://ws.apache.org/xmlrpc/apidocs/</link>
<link>http://www.csg.is.titech.ac.jp/~chiba/javassist/html</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<site>
<id>apache.website</id>
<name>Apache Website</name>
<url>scp://people.apache.org/www/commons.apache.org/proper/proxy/</url>
</site>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.1_3</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>javassist</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>jmock</groupId>
<artifactId>jmock</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<maven.compile.source>1.6</maven.compile.source>
<maven.compile.target>1.6</maven.compile.target>
<commons.componentid>proxy</commons.componentid>
<commons.release.version>1.0</commons.release.version>
<commons.binary.suffix></commons.binary.suffix>
<commons.jira.id>PROXY</commons.jira.id>
<commons.jira.pid>12310731</commons.jira.pid>
<asm.version>4.1</asm.version>
</properties>
</project>