<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.jira</groupId>
        <artifactId>jira-rest</artifactId>
        <version>6.3-m01-1</version>
    </parent>
    <artifactId>jira-rest-plugin</artifactId>
    <name>Atlassian JIRA - Plugins - REST Plugin</name>
    <description>Provides a REST interface for JIRA</description>
    <packaging>bundle</packaging>
    <properties>
        <atlassian.plugin.key>com.atlassian.jira.rest</atlassian.plugin.key>
        <xsl.directory>${project.build.directory}/xsl</xsl.directory>
        <restdoc.directory>${project.build.directory}/restapi</restdoc.directory>
        <send.mail.disabled>true</send.mail.disabled>
        <atlassian.dev.mode>true</atlassian.dev.mode>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.twdata.maven</groupId>
                <artifactId>maven-cli-plugin</artifactId>
              </plugin>
              <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                  <executions>
                    <execution>
                      <id>create-bundle</id>
                      <phase>package</phase>
                      <goals>
                        <goal>bundle</goal>
                      </goals>
                    </execution>
                  </executions>
                  <configuration>
                    <instructions>
                      <Atlassian-Plugin-Key>${atlassian.plugin.key}</Atlassian-Plugin-Key>
                      <Spring-Context>*</Spring-Context>
                      <Include-Resource>
                         {maven-resources};
                         ${project.build.outputDirectory}/resourcedoc.xml;
                         ${xsl.directory}/application-grammars.xml;
                         ${xsl.directory}/application-doc.xml;
                      </Include-Resource>
                      <Import-Package>
                          com.atlassian.annotations,
                          com.atlassian.core.*,
                          com.atlassian.crowd.*,
                          com.atlassian.event.api,
                          com.atlassian.fugue,
                          com.atlassian.jira.*,
                          com.atlassian.johnson,
                          com.atlassian.mail,
                          com.atlassian.mail.server,
                          com.atlassian.plugin,
                          com.atlassian.plugins.rest.common.*,
                          com.atlassian.query,
                          com.atlassian.sal.api.websudo,
                          com.atlassian.seraph.*,
                          com.atlassian.util.concurrent,
                          com.atlassian.validation,
                          com.google.common.*,
                          com.opensymphony.module.propertyset.*,
                          com.opensymphony.util,
                          com.opensymphony.workflow.loader,
                          com.sun.jersey.*,
                          javax.annotation,
                          javax.servlet,
                          javax.servlet.http,
                          javax.ws.rs.*,
                          javax.ws.rs.core,
                          javax.xml.bind.*,
                          org.apache.commons.*,
                          org.apache.commons.logging,
                          org.apache.log4j,
                          org.codehaus.jackson.*,
                          org.ofbiz.core.*,
                          org.osgi.framework,
                          org.slf4j,
                          org.springframework.beans.factory.*,
                          org.springframework.stereotype,
                          org.w3c.dom,
                          webwork.config,
                          com.atlassian.plugin.osgi.factory,
                          *;resolution:=optional
                      </Import-Package>
                      <Export-Package>
                         com.atlassian.jira.rest.api.*;version="${project.version}",
                         com.atlassian.jira.rest.v1.*;version="${project.version}",
                         com.atlassian.jira.rest.v2.*;version="${project.version}",
                      </Export-Package>
                      <DynamicImport-Package>org.springframework.*,org.aopalliance.*</DynamicImport-Package>
                      <Embed-Dependency>*;scope=compile;inline=false</Embed-Dependency>
                    </instructions>
                </configuration>
                  <!--
                       Ensure that amps uses the same version of rest-doclet as JIRA, which avoids problems with
                       jackson when generating JSON examples.
                   -->
                  <dependencies>
                      <dependency>
                          <groupId>com.atlassian.plugins.rest</groupId>
                          <artifactId>atlassian-rest-doclet</artifactId>
                          <version>${rest.version}</version>
                      </dependency>
                  </dependencies>
            </plugin>
            <plugin>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.4.3</version>
                <executions>
                    <execution>
                        <id>copy-xsl-resources</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${xsl.directory}</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>${basedir}/src/main/doc</directory>
                                    <filtering>true</filtering>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                    <execution>
                        <id>copy-js-resources</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${restdoc.directory}</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>src/main/js</directory>
                                    <filtering>true</filtering>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <id>add-plugin-components</id>
                        <phase>package</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <tasks>
                                <zip destfile="${project.build.directory}/${project.artifactId}-${project.version}.jar" update="true" basedir="${project.build.outputDirectory}" includes="META-INF/plugin-components/**" />
                            </tasks>
                        </configuration>
                    </execution>
                    <!-- Generating REST API docs-->
                    <execution>
                         <id>schemaGen-plugin-description</id>
                         <phase>process-classes</phase>
                         <goals>
                           <goal>run</goal>
                         </goals>
                        <configuration>
                            <tasks>
                                <javadoc access="public" sourcepath="${project.build.sourceDirectory}" maxmemory="1024m" failonerror="true" useexternalfile="yes">
                                    <package name="com.atlassian.jira.rest.auth." />
                                    <package name="com.atlassian.jira.rest.v2." />
                                    <!-- Uncomment the line below enable remote debugging. -->
                                    <!--<arg line="-J-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=8000" />-->
                                    <classpath>
                                        <path refid="maven.compile.classpath" />
                                        <pathelement location="${project.build.outputDirectory}" />
                                    </classpath>
                                    <doclet name="com.sun.jersey.wadl.resourcedoc.ResourceDocletJSON">
                                        <path>
                                            <path refid="maven.plugin.classpath" />
                                            <path refid="maven.compile.classpath" />
                                            <path refid="maven.runtime.classpath" />
                                            <pathelement location="${project.build.outputDirectory}" />
                                        </path>
                                        <param name="-output" value="${project.build.outputDirectory}/resourcedoc.xml" />
                                        <param name="-expand" value="attachments,fields,comments.list,watchers.list,worklogs,groups,names,schema" />
                                    </doclet>
                                </javadoc>
                                <copy file="${project.build.outputDirectory}/resourcedoc.xml" tofile="${restdoc.directory}/resourcedoc.xml" />
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>com.sun.jersey.contribs</groupId>
                <artifactId>maven-wadl-plugin</artifactId>
                <version>1.8</version>
                <executions>
                    <execution>
                        <id>generate</id>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                        <phase>prepare-package</phase>
                    </execution>
                </executions>

                <dependencies>
                    <dependency>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-simple</artifactId>
                        <version>${slf4j.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>com.atlassian.jira</groupId>
                        <artifactId>jira-api</artifactId>
                        <version>${project.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>com.atlassian.annotations</groupId>
                        <artifactId>atlassian-annotations</artifactId>
                        <version>0.8.1</version>
                    </dependency>
                </dependencies>

                <configuration>
                    <wadlFile>${restdoc.directory}/jira-rest-plugin.wadl</wadlFile>
                    <formatWadlFile>true</formatWadlFile>
                    <baseUri>http://example.com:8080/jira/rest/</baseUri>
                    <packagesResourceConfig>
                        <param>com.atlassian.jira.rest.auth</param>
                        <param>com.atlassian.jira.rest.v2</param>
                    </packagesResourceConfig>
                    <wadlGenerators>
                        <wadlGeneratorDescription>
                            <className>com.sun.jersey.server.wadl.generators.WadlGeneratorApplicationDoc
                            </className>
                            <properties>
                                <property>
                                    <name>applicationDocsFile</name>
                                    <value>${xsl.directory}/application-doc.xml</value>
                                </property>
                            </properties>
                        </wadlGeneratorDescription>
                        <wadlGeneratorDescription>
                            <className>com.sun.jersey.server.wadl.generators.WadlGeneratorGrammarsSupport
                            </className>
                            <properties>
                                <property>
                                    <name>grammarsFile</name>
                                    <value>${xsl.directory}/application-grammars.xml</value>
                                </property>
                            </properties>
                        </wadlGeneratorDescription>
                        <wadlGeneratorDescription>
                            <className>
                                com.atlassian.plugins.rest.doclet.generators.resourcedoc.AtlassianWadlGeneratorResourceDocSupport
                            </className>
                            <properties>
                                <property>
                                    <name>resourceDocFile</name>
                                    <value>${restdoc.directory}/resourcedoc.xml</value>
                                </property>
                            </properties>
                        </wadlGeneratorDescription>
                    </wadlGenerators>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>xml-maven-plugin</artifactId>
                <version>1.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>transform</goal>
                        </goals>
                        <phase>package</phase>
                    </execution>
                </executions>
                <configuration>
                    <transformationSets>
                        <transformationSet>
                            <dir>${restdoc.directory}</dir>
                            <includes>
                                <include>jira-rest-plugin.wadl</include>
                            </includes>

                            <stylesheet>${xsl.directory}/wadl-documentation.xsl</stylesheet>
                            <outputProperties>
                                <outputProperty>
                                    <name>indent</name>
                                    <value>no</value>
                                </outputProperty>
                            </outputProperties>

                            <outputDir>${restdoc.directory}</outputDir>
                            <fileMappers>
                                <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.RegExpFileMapper">
                                    <pattern>jira-rest-plugin.wadl</pattern>
                                    <replacement>index.html</replacement>
                                </fileMapper>
                            </fileMappers>
                        </transformationSet>
                    </transformationSets>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>net.sf.saxon</groupId>
                        <artifactId>saxon</artifactId>
                        <version>8.7</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
        <testResources>
            <testResource>
                <directory>src/test/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>localtest.properties</include>
                </includes>

            </testResource>
            <testResource>
                <directory>src/test/xml</directory>
                <targetPath>xml</targetPath>
                <filtering>false</filtering>
                <includes>
                    <include>*.xml</include>
                </includes>
            </testResource>
        </testResources>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>atlassian-plugin.xml</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
                <excludes>
                    <exclude>atlassian-plugin.xml</exclude>
                </excludes>
            </resource>
        </resources>
    </build>

    <profiles>
        <profile>
            <id>release</id>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-assembly-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>create-api-zip</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>single</goal>
                                </goals>
                                <configuration>
                                    <descriptors>
                                        <descriptor>src/main/assembly/apidocs.xml</descriptor>
                                    </descriptors>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

    <dependencies>
        <dependency>
            <groupId>com.atlassian.jira</groupId>
            <artifactId>jira-core</artifactId>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.security</groupId>
                    <artifactId>spring-security-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.atlassian.p4package</groupId>
                    <artifactId>atlassian-p4package</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.atlassian.modzdetector</groupId>
                    <artifactId>modz-detector</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-log4j12</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.atlassian.crowd</groupId>
            <artifactId>embedded-crowd-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.crowd</groupId>
            <artifactId>embedded-crowd-core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <scope>provided</scope>
            <version>3.1</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.jira</groupId>
            <artifactId>jira-rest-api</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.plugins.rest</groupId>
            <artifactId>atlassian-rest-common</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <!-- for some obscure reason it needs to be a module dep and not just a dep of the antrun plugin (ask Min'an) -->
            <groupId>com.atlassian.plugins.rest</groupId>
            <artifactId>atlassian-rest-doclet</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.ws.rs</groupId>
            <artifactId>jsr311-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.jira</groupId>
            <artifactId>jira-tests</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>com.atlassian.modzdetector</groupId>
                    <artifactId>modz-detector</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.core</groupId>
            <artifactId>atlassian-core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.classloader</groupId>
            <artifactId>atlassian-classloader</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>com.atlassian.plugin</groupId>
            <artifactId>atlassian-spring-scanner-annotation</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.plugin</groupId>
            <artifactId>atlassian-spring-scanner-processor</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.plugin</groupId>
            <artifactId>atlassian-spring-scanner-runtime</artifactId>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>
