jira-hudson-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.marvelution.jira.plugins</groupId> <artifactId>jira-hudson-plugin</artifactId> <version>5.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Licensed to Marvelution under one or more contributor license ~ agreements. See the NOTICE file distributed with this work ~ for additional information regarding copyright ownership. ~ Marvelution licenses this file to you under the Apache License, ~ Version 2.0 (the "License"); you may not use this file except ~ in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.marvelution.jira.plugins</groupId> <artifactId>jira-hudson-integration</artifactId> <version>5.0.4</version> </parent> <artifactId>jira-hudson-plugin</artifactId> <packaging>atlassian-plugin</packaging> <name>JIRA Hudson Plugin</name> <description>JIRA Plugin to integrate Hudson CI</description> <url>http://apidocs.marvelution.com/${project.parent.artifactId}/${project.version}/${project.artifactId}/</url> <scm> <connection>scm:git:git@github.com:Marvelution/jira-hudson-integration.git/jira-hudson-plugin</connection> <developerConnection>scm:git:git@github.com:Marvelution/jira-hudson-integration.git/jira-hudson-plugin</developerConnection> <url>http://fisheye.marvelution.com/browse/jira-hudson-integration/jira-hudson-plugin</url> </scm> <properties> <atlassian.jira.data.version>4.2</atlassian.jira.data.version> <atlassian.amps.version>3.11</atlassian.amps.version> <atlassian.streams.version>5.1.0</atlassian.streams.version> <atlassian.ao.version>0.19.10</atlassian.ao.version> <atlassian.plugin.key>${project.groupId}.hudson</atlassian.plugin.key> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>hudson-apiv2-wsclient</artifactId> <version>${project.version}</version> <type>jar</type> <scope>compile</scope> <exclusions> <exclusion> <artifactId>commons-lang</artifactId> <groupId>commons-lang</groupId> </exclusion> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.marvelution.security</groupId> <artifactId>marvelution-security-crypto</artifactId> <version>1.0.0</version> <type>jar</type> <scope>compile</scope> <exclusions> <exclusion> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <!-- needed for the ws-client jar --> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>2.2.1.1</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>com.atlassian.activeobjects</groupId> <artifactId>activeobjects-plugin</artifactId> <version>${atlassian.ao.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-api</artifactId> <version>${atlassian.jira.version}</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-core</artifactId> <version>${atlassian.jira.version}</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-project-config-plugin</artifactId> <version>${atlassian.jira.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-rest-plugin</artifactId> <version>${atlassian.jira.version}</version> <type>jar</type> <scope>provided</scope> <exclusions> <exclusion> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> </exclusion> <exclusion> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> </exclusion> <exclusion> <groupId>com.atlassian.plugins.rest</groupId> <artifactId>atlassian-rest-common</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.atlassian.plugins.rest</groupId> <artifactId>atlassian-rest-common</artifactId> <version>2.3.1</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.sal</groupId> <artifactId>sal-api</artifactId> <version>2.6.1</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.streams</groupId> <artifactId>streams-api</artifactId> <version>${atlassian.streams.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.streams</groupId> <artifactId>streams-core-plugin</artifactId> <version>${atlassian.streams.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.streams</groupId> <artifactId>streams-aggregator-plugin</artifactId> <version>${atlassian.streams.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.streams</groupId> <artifactId>streams-spi</artifactId> <version>${atlassian.streams.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> <version>1.0</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${javax.xml.bind.version}</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.enunciate</groupId> <artifactId>enunciate-core</artifactId> <version>${enunciate.version}</version> <type>jar</type> <scope>provided</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <!-- Test Dependencies --> <dependency> <groupId>com.atlassian.activeobjects</groupId> <artifactId>activeobjects-test</artifactId> <version>${atlassian.ao.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-tests</artifactId> <version>${atlassian.jira.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-func-tests</artifactId> <version>${atlassian.jira.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.5.8</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>atlassian-plugin.xml</exclude> <exclude>gadgets/*.xml</exclude> <exclude>**/JiraPluginUtils.properties</exclude> </excludes> </resource> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>atlassian-plugin.xml</include> <include>gadgets/*.xml</include> <include>**/JiraPluginUtils.properties</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>com.atlassian.maven.plugins</groupId> <artifactId>maven-jira-plugin</artifactId> <version>${atlassian.amps.version}</version> <extensions>true</extensions> <configuration> <product>jira</product> <productVersion>${atlassian.jira.version}</productVersion> <productDataVersion>${atlassian.jira.data.version}</productDataVersion> <productDataPath>${basedir}/src/test/resources/generated-test-resources.zip</productDataPath> <server>localhost</server> <allowGoogleTracking>false</allowGoogleTracking> <pluginKey>${atlassian.plugin.key}</pluginKey> <instructions> <Bundle-SymbolicName>${atlassian.plugin.key}</Bundle-SymbolicName> <Import-Package> com.atlassian.core.util*;version="0.0", com.atlassian.crowd.embedded.api*;version="0.0", com.atlassian.jira*;version="0.0", com.atlassian.plugin*;version="0.0", com.atlassian.plugins*;version="0.0", com.atlassian.query*;version="0.0", com.atlassian.sal.api*;version="0.0", com.atlassian.streams.api*;version="0.0", com.atlassian.streams.spi*;version="0.0", com.google.common*;version="0.0", com.opensymphony.module.propertyset*;version="0.0", com.opensymphony.user*;version="0.0", com.sun.jersey.spi.resource*;version="0.0", java.security.cert*;version="0.0", javax.activation*;version="0.0", javax.crypto*;version="0.0", javax.servlet*;version="0.0", javax.net.ssl*;version="0.0", javax.ws.rs*;version="0.0", javax.xml*;version="0.0", net.java.ao*;version="0.0", org.apache.commons.codec*;version="0.0", org.apache.commons.io*;version="0.0", org.apache.commons.lang*;version="0.0", org.apache.commons.logging*;version="0.0", org.apache.http*;version="0.0", org.apache.log4j*;version="0.0", org.apache.velocity.tools.generic*;version="0.0", org.jfree.chart*;version="0.0", org.jfree.data.xy*;version="0.0", org.jfree.ui*;version="0.0", org.joda.time*;version="0.0", org.xml.sax*;version="0.0", webwork.action*;version="0.0" </Import-Package> <Private-Package> com.marvelution.security.crypto*, </Private-Package> <DynamicImport-Package> com.atlassian.activeobjects.external;version="0.0" </DynamicImport-Package> <log4jProperties>${basedir}/src/test/resources/log4j.properties</log4jProperties> </instructions> </configuration> </plugin> <plugin> <inherited>true</inherited> <groupId>org.codehaus.enunciate</groupId> <artifactId>maven-enunciate-slim-plugin</artifactId> <version>${enunciate.version}</version> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>docs</goal> </goals> </execution> </executions> <configuration> <configFile>src/enunciate/enunciate.xml</configFile> </configuration> <dependencies> <dependency> <groupId>org.codehaus.enunciate</groupId> <artifactId>enunciate-docs</artifactId> <version>${enunciate.version}</version> </dependency> <dependency> <groupId>org.codehaus.enunciate</groupId> <artifactId>enunciate-java-client</artifactId> <version>${enunciate.version}</version> </dependency> <dependency> <groupId>org.codehaus.enunciate</groupId> <artifactId>enunciate-xml</artifactId> <version>${enunciate.version}</version> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${javax.xml.bind.version}</version> </dependency> <dependency> <groupId>com.marvelution.skins</groupId> <artifactId>marvelution-enunciate-template</artifactId> <version>0.0.1</version> </dependency> </dependencies> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>com.atlassian.maven.plugins</groupId> <artifactId>maven-jira-plugin</artifactId> <versionRange>[3.8,)</versionRange> <goals> <goal>copy-bundled-dependencies</goal> <goal>compress-resources</goal> <goal>filter-plugin-descriptor</goal> <goal>generate-manifest</goal> <goal>generate-rest-docs</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.enunciate</groupId> <artifactId>maven-enunciate-slim-plugin</artifactId> <version>${enunciate.version}</version> <configuration> <docsSubdir /> <indexPageName>index.html</indexPageName> </configuration> </plugin> </plugins> </reporting> </project>