hudson-jirareporter-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.marvelution.jira.plugins</groupId> <artifactId>hudson-jirareporter-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>hudson-jirareporter-plugin</artifactId> <packaging>hpi</packaging> <name>Hudson JIRA Reporter</name> <description>This plugin features JIRA Reporter publisher.</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/hudson-jirareporter-plugin</connection> <developerConnection>scm:git:git@github.com:Marvelution/jira-hudson-integration.git/hudson-jirareporter-plugin</developerConnection> <url>http://fisheye.marvelution.com/browse/jira-hudson-integration/hudson-jirareporter-plugin</url> </scm> <properties> <axis.version>1.4</axis.version> <javax.activation.version>1.1.1</javax.activation.version> <javax.mail.version>1.4.1</javax.mail.version> <axis.wsdl4j.version>1.5.1</axis.wsdl4j.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>hudson-apiv2-plugin</artifactId> <version>${project.version}</version> <scope>compile</scope> <type>jar</type> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>${javax.activation.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>${javax.mail.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>${axis.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis-jaxrpc</artifactId> <version>${axis.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis-saaj</artifactId> <version>${axis.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>axis</groupId> <artifactId>axis-wsdl4j</artifactId> <version>${axis.wsdl4j.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.jenkins-ci.main</groupId> <artifactId>jenkins-core</artifactId> <version>${jenkins.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jenkins-ci.main</groupId> <artifactId>jenkins-war</artifactId> <type>war</type> <version>${jenkins.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jenkins-ci.main</groupId> <artifactId>jenkins-test-harness</artifactId> <version>${jenkins.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/HudsonPluginUtils.properties</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <excludes> <exclude>**/HudsonPluginUtils.properties</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>axistools-maven-plugin</artifactId> <version>1.4</version> <dependencies> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>${axis.version}</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>${javax.activation.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>${javax.mail.version}</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> <configuration> <wsdlFiles> <wsdlFile>jirasoapservice-v2.wsdl</wsdlFile> </wsdlFiles> <packageSpace>com.atlassian.jira.rpc.soap.client</packageSpace> </configuration> <executions> <execution> <id>wsdl2java-generation</id> <phase>generate-sources</phase> <goals> <goal>wsdl2java</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jenkins-ci.tools</groupId> <artifactId>maven-hpi-plugin</artifactId> <version>1.90</version> <extensions>true</extensions> <configuration> <showDeprecation>true</showDeprecation> <disabledTestInjection>true</disabledTestInjection> </configuration> </plugin> <plugin> <groupId>org.kohsuke.stapler</groupId> <artifactId>maven-stapler-plugin</artifactId> <version>${stapler.version}</version> <extensions>true</extensions> <dependencies> <dependency> <groupId>org.jvnet.maven-jellydoc-plugin</groupId> <artifactId>maven-jellydoc-plugin</artifactId> <version>1.4</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>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <versionRange>[1.6,)</versionRange> <goals> <goal>run</goal> </goals> </pluginExecutionFilter> <action> <execute /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>get-jira-wsdl</id> <activation> <file> <missing>${basedir}/src/main/wsdl/jirasoapservice-v2.wsdl</missing> </file> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>get-jira-wsdl</id> <phase>initialize</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <get src="http://issues.marvelution.com/rpc/soap/jirasoapservice-v2?wsdl" dest="${basedir}/src/main/wsdl/jirasoapservice-v2.wsdl" /> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>