jira-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sigmalab.maven.plugins</groupId> <artifactId>jira-maven-plugin</artifactId> <version>0.9.7</version> </dependency>
<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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>net.sigmalab.maven.plugins</groupId> <artifactId>jira-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>Maven Jira Plugin</name> <version>0.9.7</version> <description>This maven plugin contains MOJOs to ease integration with Jira</description> <url>https://github.com/schrepfler/jira-maven-plugin</url> <inceptionYear>2014</inceptionYear> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/schrepfler/jira-maven-plugin/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Dependency version properties below here. --> <maven.plugin.testing.annotation.version>3.8.1</maven.plugin.testing.annotation.version> <maven.plugin.testing.harness.version>3.3.0</maven.plugin.testing.harness.version> <maven.enforcer.plugin.version>3.2.1</maven.enforcer.plugin.version> <maven.compiler.plugin.version>3.11.0</maven.compiler.plugin.version> <maven.gpg.plugin.version>3.0.1</maven.gpg.plugin.version> <maven.cyclonedx.plugin.version>2.7.5</maven.cyclonedx.plugin.version> <license.maven.plugin.version>2.0.0</license.maven.plugin.version> <versions.maven.plugin.version>2.15.0</versions.maven.plugin.version> <jira.rest.java.client.version>5.2.4</jira.rest.java.client.version> <fugue.version>5.0.0</fugue.version> <maven.version>3.9.1</maven.version> <gitflow.maven.plugin.version>1.19.0</gitflow.maven.plugin.version> <nexus.staging.maven.plugin.version>1.6.13</nexus.staging.maven.plugin.version> <maven.clean.plugin.version>3.2.0</maven.clean.plugin.version> <maven.deploy.plugin.version>3.1.0</maven.deploy.plugin.version> <maven.install.plugin.version>3.1.0</maven.install.plugin.version> <maven.jar.plugin.version>3.3.0</maven.jar.plugin.version> <maven.plugin.plugin.version>3.8.1</maven.plugin.plugin.version> <maven.resources.plugin.version>3.3.0</maven.resources.plugin.version> <maven.site.plugin.version>3.12.1</maven.site.plugin.version> <maven.surefire.plugin.version>3.0.0</maven.surefire.plugin.version> <maven.javadoc.plugin.version>3.5.0</maven.javadoc.plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <mockito.version>4.11.0</mockito.version> <junit.version>4.13.2</junit.version> <plexus-sec-dispatcher.version>2.0</plexus-sec-dispatcher.version> </properties> <repositories> <repository> <id>atlassian-public</id> <url>https://packages.atlassian.com/maven/repository/public</url> <releases> <enabled>true</enabled> <checksumPolicy>warn</checksumPolicy> </releases> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>atlassian-public</id> <url>https://packages.atlassian.com/maven/repository/public</url> <releases> <enabled>true</enabled> <checksumPolicy>warn</checksumPolicy> </releases> </pluginRepository> </pluginRepositories> <prerequisites> <maven>3.5.4</maven> </prerequisites> <developers> <developer> <id>gastaldi</id> <name>George Gastaldi</name> <email>gastaldi@apache.org</email> <url>http://gastaldi.wordpress.com</url> </developer> <developer> <id>dgrierso</id> <name>David Grierson</name> <email>david@grierson.org.uk</email> <url>https://about.me/davidgrierson</url> <timezone>GMT</timezone> </developer> <developer> <id>schrepfler</id> <email>schrepfler@gmail.com</email> <name>Srdan Srepfler</name> <organization>SigmaLab</organization> <organizationUrl>http://blog.sigmalab.net</organizationUrl> <properties> <skype>schrepfler</skype> </properties> <roles> <role>Developer</role> </roles> <timezone>CET</timezone> <url>http://schrepfler.blogspot.com</url> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>Nexus Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <name>Nexus Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <dependencies> <dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-rest-java-client-core</artifactId> <version>${jira.rest.java.client.version}</version> </dependency> <!-- required https://github.com/schrepfler/jira-maven-plugin/issues/59 --> <dependency> <groupId>io.atlassian.fugue</groupId> <artifactId>fugue</artifactId> <version>${fugue.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven.plugin.testing.annotation.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-sec-dispatcher</artifactId> <version>${plexus-sec-dispatcher.version}</version> </dependency> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>${maven.plugin.testing.harness.version}</version> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:git:git@github.com:schrepfler/jira-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:schrepfler/jira-maven-plugin.git</developerConnection> <url>https://github.com/schrepfler/jira-maven-plugin</url> </scm> <!-- Define a profile used to perform releases of the artifacts See: https://blog.sonatype.com/2010/01/how-to-generate-pgp-signatures-with-maven/ --> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- Prevent gpg from using pinentry programs, needed for GitHub Actions --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>java8</id> <activation> <jdk>1.8</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <configuration> <doclint>none</doclint> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license.maven.plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions.maven.plugin.version}</version> </plugin> <plugin> <groupId>com.amashchenko.maven.plugin</groupId> <artifactId>gitflow-maven-plugin</artifactId> <version>${gitflow.maven.plugin.version}</version> <configuration> <gitFlowConfig> <versionTagPrefix>v</versionTagPrefix> </gitFlowConfig> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven.deploy.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${maven.install.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven.plugin.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven.resources.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven.site.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.plugin.version}</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>(3.1.1,)</version> <message>Maven 3.x line needed.</message> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.amashchenko.maven.plugin</groupId> <artifactId>gitflow-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${maven.clean.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.cyclonedx</groupId> <artifactId>cyclonedx-maven-plugin</artifactId> <version>${maven.cyclonedx.plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>makeBom</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <reportSets> <reportSet> <reports> <report>dependency-updates-report</report> <report>plugin-updates-report</report> <report>property-updates-report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>