<?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.mywork</groupId>
        <artifactId>mywork-project</artifactId>
        <version>1.1-alpha38</version>
    </parent>
    <artifactId>mywork-confluence-host-plugin</artifactId>

    <name>Notifications and Tasks - Host Plugin</name>
    <description>Provides persistence and rendering for Notifications and Tasks</description>
    <packaging>atlassian-plugin</packaging>

    <dependencies>
        <dependency>
            <groupId>com.atlassian.mywork</groupId>
            <artifactId>mywork-api</artifactId>
            <version>1.1-alpha38</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.mywork</groupId>
            <artifactId>mywork-common-plugin</artifactId>
            <version>1.1-alpha38</version>
            <type>atlassian-plugin</type>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.mywork</groupId>
            <artifactId>mywork-jira-provider-plugin</artifactId>
            <version>1.1-alpha38</version>
            <type>atlassian-plugin</type>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.mywork</groupId>
            <artifactId>mywork-confluence-provider-plugin</artifactId>
            <version>1.1-alpha38</version>
            <type>atlassian-plugin</type>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.plugins</groupId>
            <artifactId>atlassian-plugins-servlet</artifactId>
            <version>2.11.2-m4</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.plugins.rest</groupId>
            <artifactId>atlassian-rest-common</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.applinks</groupId>
            <artifactId>applinks-host</artifactId>
            <version>3.6.2</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.applinks</groupId>
            <artifactId>applinks-spi</artifactId>
            <version>3.6.2</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.cache</groupId>
            <artifactId>atlassian-cache-api</artifactId>
            <version>1.0</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.oauth</groupId>
            <artifactId>atlassian-oauth-api</artifactId>
            <version>1.5.0</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.analytics</groupId>
            <artifactId>analytics-api</artifactId>
            <version>2.12</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.4</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.templaterenderer</groupId>
            <artifactId>atlassian-template-renderer-api</artifactId>
            <version>1.3.1</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework.osgi</groupId>
            <artifactId>spring-osgi-core</artifactId>
            <version>1.2.1</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.seraph</groupId>
            <artifactId>atlassian-seraph</artifactId>
            <version>2.5.2-m2</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.util.concurrent</groupId>
            <artifactId>atlassian-util-concurrent</artifactId>
            <version>2.3.0</version>
        </dependency>

        <dependency>
            <groupId>org.owasp.antisamy</groupId>
            <artifactId>antisamy</artifactId>
            <version>1.4.2-atlassian-13</version>
            <type>jar</type>
            <exclusions>
                <exclusion>
                    <groupId>commons-httpclient</groupId>
                    <artifactId>commons-httpclient</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>net.sourceforge.nekohtml</groupId>
                    <artifactId>nekohtml</artifactId>
                </exclusion>
                <exclusion>
                    <artifactId>xml-apis</artifactId>
                    <groupId>xml-apis</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>xml-apis-ext</artifactId>
                    <groupId>xml-apis</groupId>
                </exclusion>
                 <exclusion>
                    <artifactId>commons-logging</artifactId>
                    <groupId>commons-logging</groupId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <version>3.1</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.xmlgraphics</groupId>
            <artifactId>batik-css</artifactId>
            <version>1.7</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>xerces</groupId>
            <artifactId>xercesImpl</artifactId>
            <version>2.9.1</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <scope>test</scope>
        </dependency>

        <!-- Active Objects dependencies -->
        <dependency>
            <groupId>com.atlassian.activeobjects</groupId>
            <artifactId>activeobjects-plugin</artifactId>
            <version>0.19.9</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.atlassian.activeobjects</groupId>
            <artifactId>activeobjects-test</artifactId>
            <version>0.19.9</version>
            <scope>test</scope>
        </dependency>

        <!-- Confluence dependency -->
        <dependency>
            <groupId>com.atlassian.confluence</groupId>
            <artifactId>confluence</artifactId>
            <version>4.3</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-log4j12</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>com.atlassian.confluence.plugins</groupId>
            <artifactId>confluence-mobile</artifactId>
            <version>4.3</version>
            <scope>provided</scope>
        </dependency>

        <!-- for some obscure reason it needs to be a module dep and not just a dep of the antrun plugin (ask Min'an) -->
        <dependency>
            <groupId>com.atlassian.plugins.rest</groupId>
            <artifactId>atlassian-rest-doclet</artifactId>
            <scope>provided</scope>
            <version>2.6.4.1</version>
        </dependency>

        <!-- These need to be here just for REST documentation -->
        <dependency>
            <groupId>com.atlassian.sal</groupId>
            <artifactId>sal-api</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-core-asl</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-mapper-asl</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.atlassian.applinks</groupId>
            <artifactId>applinks-api</artifactId>
            <version>3.6.2</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.google.template.soy</groupId>
            <artifactId>soycompiler</artifactId>
            <version>20111410-r22-atlassian5</version>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>maven-amps-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <systemPropertyVariables>
                        <xvfb.enable>true</xvfb.enable>
                    </systemPropertyVariables>

                    <instructions>
                        <Export-Package>
                            com.atlassian.mywork.host.service,
                        </Export-Package>
                        <Import-Package>
                            com.atlassian.activeobjects.external,
                            com.atlassian.activeobjects.tx,
                            com.atlassian.applinks.api*,
                            com.atlassian.applinks.spi.auth,
                            com.atlassian.config.lifecycle.events,
                            com.atlassian.core.util,
                            com.atlassian.crowd.event.user,
                            com.atlassian.event.api,
                            com.atlassian.fugue,
                            com.atlassian.mywork.event.*,
                            com.atlassian.mywork.model,
                            com.atlassian.mywork.service,
                            com.atlassian.mywork.util,
                            com.atlassian.mywork.rest,
                            com.atlassian.plugin.elements,
                            com.atlassian.plugin.servlet,
                            com.atlassian.plugin.web,
                            com.atlassian.plugin.webresource,
                            com.atlassian.plugin.webresource.transformer,
                            com.atlassian.plugins.rest.common.security,
                            com.atlassian.confluence.cluster,
                            com.atlassian.confluence.plugins.mobile.velocity,
                            com.atlassian.confluence.util.velocity,
                            com.atlassian.oauth.event,
                            com.atlassian.sal.*,
                            com.atlassian.seraph.*,
                            com.atlassian.templaterenderer,
                            com.atlassian.sal.api.transaction,
                            com.google.common.*,
                            javax.servlet,
                            javax.servlet.http,
                            javax.ws.rs,
                            javax.ws.rs.core,
                            javax.ws.rs.ext,
                            javax.xml.parsers,
                            net.java.ao,
                            net.java.ao.schema,
                            org.apache.batik.css.*,
                            org.apache.commons.httpclient,
                            org.apache.commons.httpclient.methods,
                            org.apache.commons.io,
                            org.apache.commons.lang,
                            org.apache.commons.lang.builder,
                            org.apache.commons.lang.time,
                            org.apache.commons.logging,
                            org.apache.xml.serialize,
                            org.codehaus.jackson,
                            org.codehaus.jackson.annotate,
                            org.codehaus.jackson.map,
                            org.codehaus.jackson.node,
                            org.cyberneko.html*,
                            org.dom4j,
                            org.dom4j.io,
                            org.osgi.framework,
                            org.slf4j,
                            org.springframework*,
                            org.w3c.css.sac,
                            org.w3c.dom,
                            org.w3c.dom.ls,
                            org.w3c.dom.traversal,
                            org.xml.sax,
                            org.xml.sax.ext,
                        </Import-Package>
                    </instructions>
                    <products>
                        <product>
                            <id>jira</id>
                            <instanceId>jira1</instanceId>
                            <version>5.2.KA16</version>
                            <dataVersion>5.2.KA16</dataVersion>
                            <httpPort>2990</httpPort>
                            <jvmArgs></jvmArgs>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.mywork</groupId>
                                    <artifactId>mywork-common-plugin</artifactId>
                                    <version>1.1-alpha38</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.mywork</groupId>
                                    <artifactId>mywork-jira-provider-plugin</artifactId>
                                    <version>1.1-alpha38</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                        <product>
                            <id>confluence</id>
                            <instanceId>confluence1</instanceId>
                            <version>4.3</version>
                            <dataVersion>4.3</dataVersion>
                            <jvmArgs>-Datlassian.disable.caches=true</jvmArgs>
                            <pluginArtifacts>
                                <pluginArtifact>
                                    <groupId>com.atlassian.mywork</groupId>
                                    <artifactId>mywork-common-plugin</artifactId>
                                    <version>1.1-alpha38</version>
                                </pluginArtifact>
                                <pluginArtifact>
                                    <groupId>com.atlassian.mywork</groupId>
                                    <artifactId>mywork-confluence-provider-plugin</artifactId>
                                    <version>1.1-alpha38</version>
                                </pluginArtifact>
                            </pluginArtifacts>
                        </product>
                    </products>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.github.searls</groupId>
                <artifactId>jasmine-maven-plugin</artifactId>
                <version>1.1.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>test</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <jsSrcDir>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/resources/js</jsSrcDir>
                    <jsTestSrcDir>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/test/js</jsTestSrcDir>
                    <sourceIncludes>
                        <!-- Explicitly include files for order-->
                        <include>lib/underscore-min.js</include>
                        <include>lib/backbone-min.js</include>

                        <include>views/notification-main-view.js</include>
                        <include>views/notification-entry-view.js</include>
                        <include>views/drilldown-view.js</include>
                        <include>views/header-view.js</include>
                        <include>views/action-view.js</include>
                        <include>views/notification-view.js</include>
                        <include>views/miniview/notification-views.js</include>

                        <include>views/task-main-view.js</include>
                        <include>views/taskdetail-view.js</include>
                        <include>views/header-view.js</include>
                        <include>views/task-view.js</include>
                        <include>views/miniview/task-views.js</include>
                        <include>**/*.js</include>
                    </sourceIncludes>
                    <specIncludes>
                        <include>jasmine-jquery-1.3.1.js</include>
                        <include>**/*.js</include>
                    </specIncludes>
                    <specExcludes>
                        <exclude>helper.js</exclude>
                    </specExcludes>
                    <sourceExcludes>
                        <exclude>mywork.js</exclude>
                        <exclude>mobile/mobile-routes.js</exclude>
                        <exclude>mobile/mobile-mywork.js</exclude>
                        <exclude>views/mobile/notification-views.js</exclude>
                        <exclude>views/mobile/task-views.js</exclude>
                        <exclude>util/mobile-util.js</exclude>
                        <exclude>miniview-anchor.js</exclude>
                        <exclude>lib/jquery.js</exclude>
                        <exclude>lib/jquery.effects.core.js</exclude>
                        <exclude>lib/zepto.min.js</exclude>
                    </sourceExcludes>
                    <preloadSources>
                        <source>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/resources/js/lib/jquery.js</source>
                        <source>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/test/js/sinon-1.3.1.js</source>
                        <source>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/test/js/helper.js</source>
                    </preloadSources>
                </configuration>
            </plugin>
            <plugin>
                <groupId>ro.isdc.wro4j</groupId>
                <artifactId>wro4j-maven-plugin</artifactId>
                <version>1.4.4</version>
                <executions>
                    <execution>
                        <phase>test</phase>
                        <goals>
                            <goal>jshint</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <minimize>false</minimize>
                    <options>expr,devel,evil,noarg,trailing</options>
                    <contextFolder>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/resources/</contextFolder>
                    <wroFile>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/resources/wro.xml</wroFile>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <id>schemaGen-plugin-description</id>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <tasks unless="rest.doc.skip">
                                <javadoc access="public" sourcepath="/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/java" maxmemory="1024m" failonerror="true" useexternalfile="true">
                                    <package name="com.atlassian.mywork.host.rest"/>
                                    <package name="com.atlassian.mywork.rest"/>
                                    <classpath>
                                        <path refid="maven.compile.classpath"/>
                                        <pathelement location="/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/classes"/>
                                    </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="/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/classes"/>
                                        </path>
                                        <param name="-output" value="/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/classes/resourcedoc.xml"/>
                                        <param name="-expand" value="attachments,fields,comments.list,watchers.list,worklogs,groups,names,schema"/>
                                    </doclet>
                                </javadoc>
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.carrot2.labs</groupId>
                <artifactId>smartsprites-maven-plugin</artifactId>
                <version>1.0</version>
                <configuration>
                    <rootDirPath>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/resources</rootDirPath>
                    <outputDirPath>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/classes</outputDirPath>
                </configuration>
                <executions>
                    <execution>
                        <id>spritify</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>spritify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>create-rest-apidocs</id>
            <activation>
                <activeByDefault>false</activeByDefault>
                <property>
                    <name>nat.generateDocs</name>
                </property>
            </activation>
            <build>
                <plugins>
                    <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>
                        <configuration>
                            <wadlFile>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/restapi/mywork-confluence-host-plugin.wadl</wadlFile>
                            <formatWadlFile>true</formatWadlFile>
                            <baseUri>http://example.com:8080/context/rest/mywork</baseUri>
                            <packagesResourceConfig>
                                <param>com.atlassian.mywork.host.rest</param>
                                <param>com.atlassian.mywork.rest</param>
                            </packagesResourceConfig>
                            <wadlGenerators>
                                <wadlGeneratorDescription>
                                    <className>com.sun.jersey.server.wadl.generators.WadlGeneratorApplicationDoc</className>
                                    <properties>
                                        <property>
                                            <name>applicationDocsFile</name>
                                            <value>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/classes/application-doc.xml</value>
                                        </property>
                                    </properties>
                                </wadlGeneratorDescription>
                                <wadlGeneratorDescription>
                                    <className>com.sun.jersey.server.wadl.generators.WadlGeneratorGrammarsSupport</className>
                                    <properties>
                                        <property>
                                            <name>grammarsFile</name>
                                            <value>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/classes/application-grammars.xml</value>
                                        </property>
                                    </properties>
                                </wadlGeneratorDescription>
                                <wadlGeneratorDescription>
                                    <className>com.atlassian.plugins.rest.doclet.generators.resourcedoc.AtlassianWadlGeneratorResourceDocSupport</className>
                                    <properties>
                                        <property>
                                            <name>resourceDocFile</name>
                                            <value>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/classes/resourcedoc.xml</value>
                                        </property>
                                    </properties>
                                </wadlGeneratorDescription>
                            </wadlGenerators>
                        </configuration>
                    </plugin>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>exec-maven-plugin</artifactId>
                        <version>1.2</version>
                        <executions>
                            <execution>
                                <id>exec-xsltproc</id>
                                <goals>
                                    <goal>exec</goal>
                                </goals>
                                <phase>package</phase>
                                <configuration>
                                    <executable>xsltproc</executable>
                                    <commandlineArgs>-o /opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/restapi/index.html /opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/restapi/wadl-documentation.xsl /opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/restapi/mywork-confluence-host-plugin.wadl</commandlineArgs>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <artifactId>maven-resources-plugin</artifactId>
                        <version>2.4.3</version>
                        <executions>
                            <execution>
                                <id>copy-doc-resources</id>
                                <phase>validate</phase>
                                <goals>
                                    <goal>copy-resources</goal>
                                </goals>
                                <configuration>
                                    <outputDirectory>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/restapi</outputDirectory>
                                    <resources>
                                        <resource>
                                            <directory>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/doc</directory>
                                            <filtering>true</filtering>
                                        </resource>
                                    </resources>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <artifactId>maven-assembly-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>create-api-zip</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>single</goal>
                                </goals>
                                <configuration>
                                    <descriptors>
                                        <descriptor>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/doc/api.xml</descriptor>
                                    </descriptors>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

    <properties>
        <instanceId>confluence1</instanceId>
        <jira.http.port>2990</jira.http.port>
        <jira.jvm.args />
        <doc.directory>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/src/main/doc</doc.directory>
        <restdoc.directory>/opt/bamboo-agent/xml-data/build-dir/MWD-RELEASE-RELEASE/mywork-confluence-host-plugin/target/restapi</restdoc.directory>
        <root.dir>..</root.dir>
    </properties>

</project>
