<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>
    <!-- Please do not use Maven 2 to build JIRA -->
    <parent>
        <groupId>com.atlassian.pom</groupId>
        <artifactId>atlassian-product-pom</artifactId>
        <version>1</version>
    </parent>
    <groupId>com.atlassian.jira</groupId>
    <artifactId>atlassian-jira</artifactId>
    <name>Atlassian JIRA</name>
    <version>3.13.1-SNAPSHOT</version>
    <description>JIRA provides cutting edge issue tracking and project management.</description>
    <url>http://www.atlassian.com/software/jira</url>
    <packaging>jar</packaging>

    <issueManagement>
        <url>http://jira.atlassian.com/browse/JRA</url>
    </issueManagement>

    <ciManagement>
        <notifiers>
            <notifier>
                <configuration>
                    <address>dev@atlassian.com</address>
                </configuration>
            </notifier>
        </notifiers>
    </ciManagement>

    <inceptionYear>2002</inceptionYear>

    <mailingLists>
        <mailingList>
            <name>jira-user</name>
            <subscribe>jira-user-subscribe@lists.atlassian.com</subscribe>
            <unsubscribe>jira-user-unsubscribe@lists.atlassian.com</unsubscribe>
            <archive>http://forums.atlassian.com</archive>
        </mailingList>
    </mailingLists>

    <developers>
        <developer>
            <id>mike</id>
            <name>Mike Cannon-Brookes</name>
            <email>mike@atlassian.com</email>
        </developer>
        <developer>
            <id>scott</id>
            <name>Scott Farquhar</name>
            <email>scott@atlassian.com</email>
        </developer>
        <developer>
            <id>patrick</id>
            <name>Patrick Lightbody</name>
            <email>patrick@atlassian.com</email>
        </developer>
        <developer>
            <id>edwin</id>
            <name>Edwin Wong</name>
            <email>edwin@atlassian.com</email>
        </developer>
        <developer>
            <id>owen</id>
            <name>Owen Fellows</name>
            <email>owen@atlassian.com</email>
        </developer>
        <developer>
            <id>bobby</id>
            <name>Bobby McKeown</name>
            <email>bobby@atlassian.com</email>
        </developer>
    </developers>

    <scm>
        <connection>scm:svn:https://svn.atlassian.com/svn/private/atlassian/jira/trunk</connection>
        <developerConnection>scm:svn:https://svn.atlassian.com/svn/private/atlassian/jira/trunk</developerConnection>
        <url>https://svn.atlassian.com/svn/private/atlassian/jira/trunk</url>
    </scm>

    <organization>
        <name>Atlassian</name>
        <url>http://www.atlassian.com</url>
    </organization>

    <build>
	<extensions>
            <extension>
                <groupId>org.apache.maven.wagon</groupId>
                <artifactId>wagon-webdav</artifactId>
                <version>1.0-beta-2</version>
            </extension>
        </extensions>

        <sourceDirectory>src/java</sourceDirectory>
        <testSourceDirectory>src/test</testSourceDirectory>

        <testResources>
            <!--  Moved here for now as this is breaking the unit tests in maven2 -->
            <testResource>
                <directory>src/etc/test</directory>
            </testResource>
	    <testResource>
                <directory>src/webapp/WEB-INF/classes</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/da_DK</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/de_DE</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/de_CH</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/en_UK</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/es_ES</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/fr_FR</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/nl_BE</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/pl_PL</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/pt_BR</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/ru_RU</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/zh_TW</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/zh_CN</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/no_NO</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/it_IT</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/sk_SK</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/cs_CZ</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/ja_JP</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/hu_HU</directory>
            </testResource>
            <testResource>
                <directory>src/etc/languages/tr_TR</directory>
            </testResource>
        </testResources>

        <resources>
            <!--  Commented out for now as this is breaking the unit tests in maven2
	    <resource>
                <directory>src/webapp/WEB-INF/classes</directory>
            </resource>
	    -->
            <resource>
                <directory>src/java</directory>
                <includes>
                    <include>**/*.info</include>
                </includes>
            </resource>
            <resource>
                <directory>src/etc/java</directory>
            </resource>
            <resource>
                <directory>src/etc/notifications</directory>
            </resource>
            <resource>
                <directory>src/etc/eventtypes</directory>
            </resource>
            <resource>
                <directory>src/etc/ofbiz</directory>
            </resource>
            <resource>
                <directory>src/etc/osworkflow</directory>
            </resource>
            <resource>
                <directory>src/etc/upgrade</directory>
            </resource>
            <resource>
                <directory>src/etc/jelly</directory>
            </resource>
            <resource>
                <directory>src/etc/languages/default</directory>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <maxmem>512m</maxmem>
                    <source>1.4</source>
                    <target>1.4</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <links>
                        http://www.opensymphony.com/osuser/api/,http://www.opensymphony.com/webwork_old/api,http://java.sun.com/j2se/1.5.0/docs/api/
                    </links>
                    <maxmemory>128m</maxmemory>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <argLine>-Xmx256m</argLine>
                    <skip>false</skip>
                    <systemProperties>
                        <java.awt.headless>true</java.awt.headless>
                    </systemProperties>
                    <includes>
                        <include>**/**/Test*.java</include>
                    </includes>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <warSourceDirectory>src/webapp</warSourceDirectory>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.1-atlassian-2</version>
            </plugin>
				<plugin>
					<artifactId>maven-antrun-plugin</artifactId>
					<executions>
                        <execution>
							<id>generate-sources</id>
							<phase>generate-sources</phase>
							<goals>
								<goal>run</goal>
							</goals>
							<configuration>
								<tasks>
<!--
    # The following tasks generate the source for the
    # BuildUtils class and take care of the variable substitutions
-->
								    <tstamp><format property="touch.time" pattern="dd-MM-yyyy"/></tstamp>
									<copy file="${project.build.sourceDirectory}/com/atlassian/jira/util/BuildUtils.template"
									    tofile="${project.build.sourceDirectory}/com/atlassian/jira/util/BuildUtils.java" overwrite="true"/>
                                    <replace file="${project.build.sourceDirectory}/com/atlassian/jira/util/BuildUtils.java" token="@BUILD_DATE@" value="${touch.time}" />
                                    <replace file="${project.build.sourceDirectory}/com/atlassian/jira/util/BuildUtils.java" token="@BUILD_NUMBER@" value="${jira.build.number}" />
                                    <replace file="${project.build.sourceDirectory}/com/atlassian/jira/util/BuildUtils.java" token="@VERSION@" value="${project.version}" />
                                    <replace file="${project.build.sourceDirectory}/com/atlassian/jira/util/BuildUtils.java" token="@EDITION@" value="${jira.build.edition}" />
                                    <replace file="${project.build.sourceDirectory}/com/atlassian/jira/util/BuildUtils.java" token="@DATE_FORMAT@" value="dd-MM-yyy" />

<!--
    # The following tasks generate resource info file
-->
                                    <echo file="${project.build.sourceDirectory}/com/atlassian/jira/util/system/release.info">
${jira.release.info}
                                    </echo>
								</tasks>
							</configuration>
						</execution>
					</executions>
				</plugin>
        </plugins>
    </build>
    <dependencies>

        <dependency>
            <groupId>com.atlassian.crowd</groupId>
            <artifactId>crowd-integration-client</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>wsdl4j</groupId>
            <artifactId>wsdl4j</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.xfire</groupId>
            <artifactId>xfire-core</artifactId>
            <version>1.2.6</version>
        </dependency>

        <dependency>
            <groupId>org.codehaus.xfire</groupId>
            <artifactId>xfire-aegis</artifactId>
            <version>1.2.6</version>
        </dependency>

        <!-- This is needed for the Fisheye Plugin (runtime dependency) -->
        <!-- mtokar (2008/07/18): this has been removed until applinks-api is JDK1.4 compatible; TODO restore this -->
        <!--
        <dependency>
            <artifactId>applinks-api</artifactId>
            <groupId>com.atlassian.applinks</groupId>
            <version>1.1</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <artifactId>applinks-core</artifactId>
            <groupId>com.atlassian.applinks</groupId>
            <version>1.1</version>
            <scope>runtime</scope>
        </dependency>
        -->
        <!-- This is needed for the Fisheye Plugin (runtime dependency, see JRA-14936) -->
        <dependency>
            <groupId>com.atlassian.p4package</groupId>
            <artifactId>atlassian-p4package</artifactId>
            <version>2007.12.14</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.extras</groupId>
            <artifactId>atlassian-extras</artifactId>
            <version>1.17</version>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>1.4</version>
        </dependency>

        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.2</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.4</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.7</version>
        </dependency>
        <dependency>
            <groupId>dom4j</groupId>
            <artifactId>dom4j</artifactId>
            <version>1.4</version>
            <exclusions>
                <exclusion>
                    <groupId>isorelax</groupId>
                    <artifactId>isorelax</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>relaxngDatatype</groupId>
                    <artifactId>relaxngDatatype</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>jaxen</groupId>
                    <artifactId>jaxen</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>msv</groupId>
                    <artifactId>msv</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>saxpath</groupId>
                    <artifactId>saxpath</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.0.4</version>
        </dependency>
        <dependency>
            <groupId>oro</groupId>
            <artifactId>oro</artifactId>
            <version>2.0.7</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.core</groupId>
            <artifactId>atlassian-core</artifactId>
            <version>3.10</version>
            <exclusions>
                <exclusion>
                    <groupId>com.atlassian.profiling</groupId>
                    <artifactId>atlassian-profiling</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-io</groupId>
                    <artifactId>commons-io</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>oscore</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>propertyset</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>sitemesh</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>webwork</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>oscache</groupId>
                    <artifactId>oscache</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>atlassian-bandana</groupId>
            <artifactId>atlassian-bandana</artifactId>
            <version>0.1.13</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.ofbiz</groupId>
            <artifactId>atlassian-ofbiz</artifactId>
            <version>2.7.2</version>
            <exclusions>
                <exclusion>
                    <groupId>mockobjects</groupId>
                    <artifactId>mockobjects-jdk1.3-j2ee1.2</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.transaction</groupId>
                    <artifactId>jta</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>oscore</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>osuser</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>propertyset</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>webwork</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>oscache</groupId>
                    <artifactId>oscache</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>atlassian-profiling</groupId>
            <artifactId>atlassian-profiling</artifactId>
            <version>1.1.4</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.jdk.utilities</groupId>
            <artifactId>atlassian-jdk-utilities</artifactId>
            <version>0.3</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.configurableobjects</groupId>
            <artifactId>atlassian-configurableobjects</artifactId>
            <version>0.9</version>
            <exclusions>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>propertyset</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.atlassian.mail</groupId>
            <artifactId>atlassian-mail</artifactId>
            <version>1.15</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.scheduler</groupId>
            <artifactId>atlassian-scheduler</artifactId>
            <version>0.10</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.velocity</groupId>
            <artifactId>atlassian-velocity</artifactId>
            <version>0.8</version>
        </dependency>
        <dependency>
            <groupId>atlassian-johnson</groupId>
            <artifactId>atlassian-johnson</artifactId>
            <version>0.10</version>
        </dependency>
        <dependency>
            <groupId>atlassian-cache-servlet</groupId>
            <artifactId>atlassian-cache-servlet</artifactId>
            <version>0.5.4</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.plugins</groupId>
            <artifactId>atlassian-plugins</artifactId>
            <version>0.23.2</version>
            <exclusions>
                <exclusion>
                    <groupId>seraph</groupId>
                    <artifactId>seraph</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.atlassian.seraph</groupId>
            <artifactId>atlassian-seraph</artifactId>
            <version>0.38</version>
            <exclusions>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>propertyset</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>bouncycastle</groupId>
            <artifactId>bcprov-jdk14</artifactId>
            <version>138</version>
        </dependency>
        <dependency>
            <groupId>atlassian-tagutil</groupId>
            <artifactId>atlassian-tagutil</artifactId>
            <version>0.1</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.renderer</groupId>
            <artifactId>atlassian-renderer</artifactId>
            <version>3.14</version>
            <exclusions>
                <exclusion>
                    <groupId>com.atlassian.mail</groupId>
                    <artifactId>atlassian-mail</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.atlassian.plugins</groupId>
                    <artifactId>atlassian-plugins</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>nekohtml</groupId>
                    <artifactId>nekohtml</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>opensymphony</groupId>
                    <artifactId>oscore</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.hibernate</groupId>
                    <artifactId>jtidy</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>xerces</groupId>
                    <artifactId>xmlParserAPIs</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>atlassian-bonnie</groupId>
            <artifactId>atlassian-bonnie</artifactId>
            <version>2.3</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.gzipfilter</groupId>
            <artifactId>atlassian-gzipfilter</artifactId>
            <version>1.5</version>
        </dependency>
        <dependency>
            <groupId>p6spy</groupId>
            <artifactId>p6spy</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>osworkflow</groupId>
            <artifactId>osworkflow</artifactId>
            <version>2.8.0</version>
        </dependency>
        <dependency>
            <groupId>oscore</groupId>
            <artifactId>oscore</artifactId>
            <version>2.2.7</version>
        </dependency>
        <dependency>
            <groupId>osuser</groupId>
            <artifactId>osuser</artifactId>
            <version>1.0-dev-log4j-1.4jdk-7Dec05</version>
        </dependency>
        <dependency>
            <groupId>propertyset</groupId>
            <artifactId>propertyset</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>sitemesh</groupId>
            <artifactId>sitemesh</artifactId>
            <version>2.3-dev-25Oct-05</version>
        </dependency>
        <dependency>
            <groupId>webwork</groupId>
            <artifactId>webwork</artifactId>
            <version>17Jan08-jiratld</version>
        </dependency>
        <dependency>
            <groupId>webwork</groupId>
            <artifactId>pell-multipart-request</artifactId>
            <version>1.31.0</version>
        </dependency>
        <dependency>
            <groupId>commons-digester</groupId>
            <artifactId>commons-digester</artifactId>
            <version>1.4.1</version>
        </dependency>
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <groupId>commons-configuration</groupId>
            <artifactId>commons-configuration</artifactId>
            <version>1.0</version>
            <exclusions>
                <exclusion>
                    <artifactId>resources</artifactId>
                    <groupId>resources</groupId>
                </exclusion>
                <exclusion>
                    <groupId>commons-beanutils</groupId>
                    <artifactId>commons-beanutils-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-beanutils</groupId>
                    <artifactId>commons-beanutils-bean-collections</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>dbunit</groupId>
                    <artifactId>dbunit</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>junit-addons</groupId>
                    <artifactId>junit-addons</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>spice</groupId>
                    <artifactId>spice-jndikit</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>lucene</groupId>
            <artifactId>lucene-core</artifactId>
            <version>2.2.0</version>
        </dependency>
        <dependency>
            <groupId>lucene</groupId>
            <artifactId>lucene-analyzers</artifactId>
            <version>2.2.0</version>
        </dependency>
        <dependency>
            <groupId>jregex</groupId>
            <artifactId>jregex</artifactId>
            <version>1.2_01</version>
        </dependency>
        <dependency>
            <groupId>velocity</groupId>
            <artifactId>velocity</artifactId>
            <version>1.4</version>
            <exclusions>
                <exclusion>
                    <groupId>velocity</groupId>
                    <artifactId>velocity-dep</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>dwr</groupId>
            <artifactId>dwr</artifactId>
            <version>1.1.4</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>1.2_Java1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>cglib</groupId>
            <artifactId>cglib-full</artifactId>
            <version>2.0.1</version>
        </dependency>
        <dependency>
            <groupId>easymock</groupId>
            <artifactId>easymockclassextension</artifactId>
            <version>1.2.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>mockobjects</groupId>
            <artifactId>mockobjects-dev</artifactId>
            <version>JIRA311-DEV</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>mockobjects</groupId>
            <artifactId>mockobjects-jdk1.3</artifactId>
            <version>0.07</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>mockobjects</groupId>
            <artifactId>mockobjects-jdk1.3-j2ee1.3</artifactId>
            <version>0.07</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>mockobjects</groupId>
            <artifactId>alt-j1.3-j2ee1.3</artifactId>
            <version>0.07</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>mockobjects</groupId>
            <artifactId>alt-jdk1.3</artifactId>
            <version>0.07</version>
        </dependency>
        <dependency>
            <groupId>activation</groupId>
            <artifactId>activation</artifactId>
            <version>1.0.2</version>
        </dependency>
        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>glue</groupId>
            <artifactId>glue</artifactId>
            <version>5.0b2</version>
        </dependency>
        <dependency>
            <groupId>bsf</groupId>
            <artifactId>bsf</artifactId>
            <version>2.2</version>
        </dependency>
        <dependency>
            <groupId>bsh</groupId>
            <artifactId>bsh</artifactId>
            <version>1.2b7</version>
        </dependency>
        <dependency>
            <groupId>ofbcore</groupId>
            <artifactId>ofbcore-share</artifactId>
            <version>2.1.1-atlassian-2008-04-23</version>
        </dependency>
        <dependency>
            <groupId>ofbcore</groupId>
            <artifactId>ofbcore-entity</artifactId>
            <version>2.1.1-atlassian-2008-04-23</version>
        </dependency>
        <dependency>
            <groupId>ofbcore</groupId>
            <artifactId>ofbcore-service</artifactId>
            <version>2.1.1</version>
        </dependency>
        <dependency>
            <groupId>ofbcore</groupId>
            <artifactId>ofbcore-extutil</artifactId>
            <version>2.1.1</version>
        </dependency>
        <dependency>
            <groupId>csv</groupId>
            <artifactId>csv</artifactId>
            <version>20</version>
        </dependency>
        <dependency>
            <groupId>ofbcore</groupId>
            <artifactId>ofbcore-xerces</artifactId>
            <version>serializer</version>
        </dependency>
        <dependency>
            <groupId>quartz</groupId>
            <artifactId>quartz</artifactId>
            <version>1.4.5</version>
        </dependency>
        <dependency>
            <groupId>picocontainer</groupId>
            <artifactId>picocontainer</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>jzlib</groupId>
            <artifactId>jzlib</artifactId>
            <version>1.0.5</version>
        </dependency>
        <dependency>
            <groupId>jsch</groupId>
            <artifactId>jsch</artifactId>
            <version>0.1.23</version>
        </dependency>
        <dependency>
            <groupId>com.octo.captcha</groupId>
            <artifactId>jcaptcha-all</artifactId>
            <version>1.0-RC6</version>
        </dependency>
        <dependency>
            <groupId>javacvs</groupId>
            <artifactId>javacvs</artifactId>
            <version>2007-04-04-patched</version>
        </dependency>
        <dependency>
            <groupId>statcvs</groupId>
            <artifactId>statcvs</artifactId>
            <version>20060222-patched</version>
        </dependency>
        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.1</version>
            <exclusions>
                <exclusion>
                    <artifactId>jdbc-stdext</artifactId>
                    <groupId>javax.sql</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>commons-pool</groupId>
            <artifactId>commons-pool</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <version>1.8.0.5</version>
        </dependency>
        <dependency>
            <groupId>jndi</groupId>
            <artifactId>jndi</artifactId>
            <version>1.2.1</version>
        </dependency>
        <dependency>
            <groupId>jta</groupId>
            <artifactId>jta</artifactId>
            <version>1.0.1</version>
        </dependency>
        <dependency>
            <groupId>ots-jts</groupId>
            <artifactId>ots-jts</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>jotm</groupId>
            <artifactId>jotm</artifactId>
            <version>1.4.3</version>
        </dependency>
        <dependency>
            <groupId>jotm</groupId>
            <artifactId>jotm-jrmp_stubs</artifactId>
            <version>1.4.3</version>
        </dependency>
        <dependency>
            <groupId>jotm</groupId>
            <artifactId>jotm-iiop_stubs</artifactId>
            <version>1.4.3</version>
        </dependency>
        <dependency>
            <groupId>jotm</groupId>
            <artifactId>jonas_timer</artifactId>
            <version>1.4.3</version>
        </dependency>
        <dependency>
            <groupId>jotm</groupId>
            <artifactId>objectweb-datasource</artifactId>
            <version>1.4.3</version>
        </dependency>
        <dependency>
            <groupId>carol</groupId>
            <artifactId>carol</artifactId>
            <version>1.5.2</version>
        </dependency>
        <dependency>
            <groupId>carol</groupId>
            <artifactId>carol-properties</artifactId>
            <version>1.5.2</version>
        </dependency>
        <dependency>
            <groupId>xapool</groupId>
            <artifactId>xapool</artifactId>
            <version>1.3.1</version>
        </dependency>
        <dependency>
            <groupId>xml-apis</groupId>
            <artifactId>xml-apis</artifactId>
            <version>1.0.b2</version>
        </dependency>
        <dependency>
            <groupId>saxon</groupId>
            <artifactId>saxon-noaelfred</artifactId>
            <version>6.5.5</version>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly</artifactId>
            <version>1.0</version>
            <exclusions>
                <exclusion>
                    <groupId>commons-cli</groupId>
                    <artifactId>commons-cli</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>forehead</groupId>
                    <artifactId>forehead</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.servlet</groupId>
                    <artifactId>jstl</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>jaxen</groupId>
                    <artifactId>jaxen</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly-tags-junit</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly-tags-util</artifactId>
            <version>1.1.1</version>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly-tags-email</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly-tags-log</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly-tags-http</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly-tags-soap</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly-tags-sql</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>commons-jelly</groupId>
            <artifactId>commons-jelly-tags-regexp</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>commons-jexl</groupId>
            <artifactId>commons-jexl</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>atlassian-trackback</groupId>
            <artifactId>atlassian-trackback</artifactId>
            <version>0.11</version>
        </dependency>
        <dependency>
            <groupId>backport-util-concurrent</groupId>
            <artifactId>backport-util-concurrent</artifactId>
            <version>3.1</version>
        </dependency>
        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <version>3.0.1</version>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>xmlrpc</groupId>
            <artifactId>xmlrpc</artifactId>
            <version>2.0</version>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>axis</artifactId>
            <version>1.3</version>
            <exclusions>
                <exclusion>
                    <groupId>wsdl4j</groupId>
                    <artifactId>wsdl4j</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>axis-jaxrpc</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>axis-saaj</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
            <groupId>axis</groupId>
            <artifactId>axis-wsdl4j</artifactId>
            <version>1.5.1</version>
        </dependency>
        <dependency>
            <groupId>commons-discovery</groupId>
            <artifactId>commons-discovery</artifactId>
            <version>0.2</version>
        </dependency>
        <dependency>
            <groupId>xerces</groupId>
            <artifactId>xercesImpl</artifactId>
            <version>2.6.2</version>
        </dependency>
        <dependency>
            <groupId>xml-security</groupId>
            <artifactId>xmlsec</artifactId>
            <version>1.1.0</version>
        </dependency>
        <dependency>
            <groupId>datafile</groupId>
            <artifactId>datafile</artifactId>
            <version>1.3.3</version>
        </dependency>
        <dependency>
            <groupId>xpp3</groupId>
            <artifactId>xpp3</artifactId>
            <version>1.1.3.4-RC8</version>
        </dependency>
        <dependency>
            <groupId>xstream</groupId>
            <artifactId>xstream</artifactId>
            <version>1.1.1</version>
        </dependency>
        <dependency>
            <groupId>jfreechart</groupId>
            <artifactId>jfreechart</artifactId>
            <version>1.0.4</version>
        </dependency>
        <dependency>
            <groupId>jfree</groupId>
            <artifactId>jcommon</artifactId>
            <version>1.0.8</version>
        </dependency>
        <dependency>
            <groupId>net.java.dev.urlrewrite</groupId>
            <artifactId>urlrewrite</artifactId>
            <version>2.5.2</version>
        </dependency>
        <dependency>
            <groupId>radeox</groupId>
            <artifactId>radeox</artifactId>
            <version>1.0b2-forked-22Apr2004</version>
        </dependency>
        <dependency>
            <groupId>jtidy</groupId>
            <artifactId>jtidy</artifactId>
            <version>r8-20050104</version>
        </dependency>
        <dependency>
            <groupId>jdom</groupId>
            <artifactId>jdom</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>ehcache</groupId>
            <artifactId>ehcache</artifactId>
            <version>1.2.3</version>
        </dependency>
        <dependency>
            <groupId>stax</groupId>
            <artifactId>stax-api</artifactId>
            <version>1.0.1</version>
        </dependency>
        <dependency>
            <groupId>woodstox</groupId>
            <artifactId>wstx-asl</artifactId>
            <version>3.2.4</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.3</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.modzdetector</groupId>
            <artifactId>modz-detector</artifactId>
            <version>0.4</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

    <reporting>
        <plugins>
            <plugin>
                <artifactId>maven-changes-plugin</artifactId>
                <configuration>
                    <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-checkstyle-plugin</artifactId>
                <configuration>
                    <configLocation>conf/checkstyle.properties</configLocation>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-clover-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-javadoc-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-jxr-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-pmd-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-report-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jdepend-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>simian-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </reporting>
	<properties>
		<jira.build.number>123</jira.build.number>
		<jira.build.edition>enterprise</jira.build.edition>
		<jira.release.info>EAR/WAR</jira.release.info>
	</properties>
</project>
