jira-spring-boot-client-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.pep1.jira</groupId> <artifactId>jira-spring-boot-client-parent</artifactId> <version>0.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ MIT License ~ ~ Copyright (c) 2019 Leonard Osang ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy ~ of this software and associated documentation files (the "Software"), to deal ~ in the Software without restriction, including without limitation the rights ~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ~ copies of the Software, and to permit persons to whom the Software is ~ furnished to do so, subject to the following conditions: ~ ~ The above copyright notice and this permission notice shall be included in all ~ copies or substantial portions of the Software. ~ ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE ~ SOFTWARE. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.1.RELEASE</version> </parent> <modules> <module>client</module> <module>starter</module> <module>example</module> </modules> <groupId>com.pep1.jira</groupId> <artifactId>jira-spring-boot-client-parent</artifactId> <version>0.5</version> <packaging>pom</packaging> <name>Pep1 :: JIRA Client :: Parent</name> <description>Spring Boot Client for Atlassian JIRA, providing a REST API Client based on common Spring components.</description> <url>https://bitbucket.org/pep1/jira-spring-boot-client</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>leo</id> <name>Leonard Osang</name> <email>leo.osang@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git@bitbucket.org:pep1/jira-spring-boot-client.git</connection> <developerConnection>scm:git:git@bitbucket.org:pep1/jira-spring-boot-client.git</developerConnection> <url>https://bitbucket.org/pep1/jira-spring-boot-client</url> <tag>0.5</tag> </scm> <issueManagement> <url>https://bitbucket.org/pep1/jira-spring-boot-client/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- For compatibility --> <java.version>1.6</java.version> <!-- Dependency versions --> <atlassian-connect-spring-boot.version>1.5.1</atlassian-connect-spring-boot.version> <!-- for testing --> <spock.version>1.1-groovy-2.4</spock.version> <jira.version>7.2.6</jira.version> <jira.port>12543</jira.port> <amps.version>6.3.21</amps.version> <!-- plugins --> <nexus-staging-maven-plugin.version>1.6.7</nexus-staging-maven-plugin.version> <maven-gpg-plugin.version>1.5</maven-gpg-plugin.version> <gmaven-plugin.version>1.5</gmaven-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <maven-scm-provider-gitexe.version>1.9.5</maven-scm-provider-gitexe.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.atlassian.connect</groupId> <artifactId>atlassian-connect-spring-boot-core</artifactId> <version>${atlassian-connect-spring-boot.version}</version> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.atlassian.connect</groupId> <artifactId>atlassian-connect-spring-boot-api</artifactId> <version>${atlassian-connect-spring-boot.version}</version> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>${spock.version}</version> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-spring</artifactId> <version>${spock.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <!-- for groovy scripts (spock) --> <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>gmaven-plugin</artifactId> <version>${gmaven-plugin.version}</version> <executions> <execution> <goals> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> <includes> <include>**/*Tests.class</include> <include>**/*Test.class</include> </includes> <excludes> <exclude>it/**/*Test.class</exclude> <exclude>**/Abstract*.class</exclude> </excludes> </configuration> </plugin> <!-- integration testing with JIRA --> <plugin> <groupId>com.atlassian.maven.plugins</groupId> <artifactId>maven-jira-plugin</artifactId> <version>${amps.version}</version> <extensions>false</extensions> <configuration> <allowGoogleTracking>false</allowGoogleTracking> <productVersion>${jira.version}</productVersion> <jvmArgs>-Xmx512m</jvmArgs> <httpPort>${jira.port}</httpPort> <server>localhost</server> <enableDevToolbox>false</enableDevToolbox> <enableFastdev>false</enableFastdev> <parallel>true</parallel> <skipManifestValidation>true</skipManifestValidation> <testBundleExcludes> <!-- we could potentially remove all the unnecessary plugins here --> </testBundleExcludes> </configuration> <executions> <execution> <id>integration-test</id> <phase>integration-test</phase> <goals> <goal>integration-test</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <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> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>@{project.version}</tagNameFormat> <releaseProfiles>release</releaseProfiles> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>${maven-scm-provider-gitexe.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <repositories> <!-- for the AMPS plugin not needed for the client itself, only needed for integration testing --> <repository> <id>atlassian-public</id> <url>https://maven.atlassian.com/repository/public</url> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> <checksumPolicy>warn</checksumPolicy> </snapshots> <releases> <enabled>true</enabled> <checksumPolicy>warn</checksumPolicy> </releases> </repository> </repositories> <pluginRepositories> <!-- for the AMPS plugin not needed for the client itself, only needed for integration testing --> <pluginRepository> <id>atlassian-public</id> <url>https://maven.atlassian.com/repository/public</url> <snapshots> <enabled>true</enabled> <checksumPolicy>warn</checksumPolicy> </snapshots> <releases> <enabled>true</enabled> <checksumPolicy>warn</checksumPolicy> </releases> </pluginRepository> </pluginRepositories> </project>