<?xml version="1.0" encoding="UTF-8"?>
<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>
    <parent>
        <groupId>com.atlassian.pom</groupId>
        <artifactId>atlassian-public-pom</artifactId>
        <version>16</version>
    </parent>
    <groupId>com.atlassian.xmlrpc</groupId>
    <artifactId>atlassian-xmlrpc-binder-parent</artifactId>
    <packaging>pom</packaging>
    <version>0.9</version>
    <name>Atlassian XML-RPC Binder Parent</name>
    <url>http://www.atlassian.com/</url>
    <properties>
        <jdkLevel>1.5</jdkLevel>
    </properties>
    <scm>
        <connection>scm:svn:https://labs.atlassian.com/svn/XMLRPC/tags/atlassian-xmlrpc-binder-parent-0.9</connection>
        <developerConnection>scm:svn:https://labs.atlassian.com/svn/XMLRPC/tags/atlassian-xmlrpc-binder-parent-0.9</developerConnection>
        <url>https://labs.atlassian.com/svn/XMLRPC/tags/atlassian-xmlrpc-binder-parent-0.9</url>
    </scm>
    <licenses>
        <license>
            <name>Apache 2</name>
            <distribution>repo</distribution>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>
    <modules>
        <module>annotations</module>
        <module>binder</module>
        <module>binder-server</module>
        <module>binder-server-spring</module>
        <module>binder-support</module>
        <module>testing</module>
    </modules>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.atlassian.xmlrpc</groupId>
                <artifactId>atlassian-xmlrpc-binder-support</artifactId>
                <version>${project.version}</version>
            </dependency>
            <dependency>
                <groupId>com.atlassian.xmlrpc</groupId>
                <artifactId>atlassian-xmlrpc-binder-server</artifactId>
                <version>${project.version}</version>
            </dependency>
            <dependency>
                <groupId>com.atlassian.xmlrpc</groupId>
                <artifactId>atlassian-xmlrpc-binder-annotations</artifactId>
                <version>${project.version}</version>
            </dependency>
            <dependency>
                <groupId>com.atlassian.xmlrpc</groupId>
                <artifactId>atlassian-xmlrpc-binder-testing</artifactId>
                <version>${project.version}</version>
                <scope>test</scope>
            </dependency>

            <!-- external dependencies -->
            <dependency>
                <groupId>xml-apis</groupId>
                <artifactId>xml-apis</artifactId>
                <version>1.0.b2</version>
            </dependency>
            <dependency>
                <groupId>org.apache.xmlrpc</groupId>
                <artifactId>xmlrpc-client</artifactId>
                <version>3.1</version>
            </dependency>
            <dependency>
                <groupId>org.apache.xmlrpc</groupId>
                <artifactId>xmlrpc-common</artifactId>
                <version>3.1</version>
            </dependency>
            <dependency>
                <groupId>org.apache.ws.commons.util</groupId>
                <artifactId>ws-commons-util</artifactId>
                <version>1.0.2</version>
            </dependency>
            <dependency>
                <groupId>cglib</groupId>
                <artifactId>cglib-full</artifactId>
                <version>2.0.2</version>
            </dependency>
            <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>servlet-api</artifactId>
                <version>2.3</version>
                <scope>provided</scope>
            </dependency>
            <dependency>
                <groupId>commons-beanutils</groupId>
                <artifactId>commons-beanutils</artifactId>
                <version>1.8.0</version>
            </dependency>
            <dependency>
                <groupId>commons-httpclient</groupId>
                <artifactId>commons-httpclient</artifactId>
                <version>3.1</version>
            </dependency>
            <dependency>
                <groupId>org.apache.xmlrpc</groupId>
                <artifactId>xmlrpc-server</artifactId>
                <version>3.1</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>3.8.1</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <aggregate>true</aggregate>
                </configuration>
            </plugin>
        </plugins>
    </reporting>
    <distributionManagement>
        <site>
            <id>atlassian-documentation</id>
            <url>dav:https://docs.atlassian.com/atlassian-xmlrpc-binder/${project.version}/</url>
        </site>
    </distributionManagement>
</project>
