jira-jenkins
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.marvelution.jira.plugins</groupId> <artifactId>jira-jenkins</artifactId> <version>1.0.2</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-jenkins-integration</artifactId> <version>1.0.2</version> </parent> <artifactId>jira-jenkins</artifactId> <packaging>pom</packaging> <name>Jenkins Integration for JIRA Distribution</name> <description>Combination of a JIRA and a Jenkins CI plugin to integrate Jenkins CI with JIRA like is done with the Bamboo plugin </description> <url>http://apidocs.marvelution.com/${project.parent.artifactId}/${project.version}</url> <inceptionYear>2012</inceptionYear> <scm> <connection>scm:git:git@bitbucket.org:marvelution/jira-jenkins-integration.git/jira-jenkins</connection> <developerConnection>scm:git:git@bitbucket.org:marvelution/jira-jenkins-integration.git/jira-jenkins </developerConnection> <url>https://bitbucket.org/marvelution/jira-jenkins-integration/jira-jenkins</url> <tag>jira-jenkins-integration-1.0.2</tag> </scm> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jenkins-jira-plugin</artifactId> <version>${project.version}</version> <type>hpi</type> <scope>compile</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jira-jenkins-plugin</artifactId> <version>${project.version}</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-5</version> <executions> <execution> <id>create-main-distribution</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <attach>true</attach> <descriptors> <descriptor>src/assembly/distribution.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>