bbp-jdk-8-mvn-3-mmmrp-oss
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pl.pkk82.tests.ci</groupId> <artifactId>bbp-jdk-8-mvn-3-mmmrp-oss</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>pl.pkk82.tests.ci</groupId> <artifactId>bbp-jdk-8-mvn-3-mmmrp-oss</artifactId> <version>1.0.0</version> <name>CI with Bitbucket pipelines / jdk-8 / maven-3 / multi-module-maven-release-plugin / OSS Sonatype Nexus</name> <description>Project showing how to release artifact to OSS Sonatype Nexus using Bitbucket Pipelines and multi module maven release plugin</description> <url>https://bitbucket.org/pkk82/tests_ci_bbp-jdk-8-mvn-3-mmmrp-oss</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <name>Piotr Kozak</name> <email>piotrkrzysztofkozak@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git@bitbucket.org:pkk82/tests_ci_bbp-jdk-8-mvn-3-mmmrp-oss.git</connection> <developerConnection>scm:git:git@bitbucket.org:pkk82/tests_ci_bbp-jdk-8-mvn-3-mmmrp-oss.git</developerConnection> <url>https://bitbucket.org/pkk82/tests_ci_bbp-jdk-8-mvn-3-mmmrp-oss</url> </scm> <distributionManagement> <repository> <id>oss.sonatype.org</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>oss.sonatype.org</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <project.build.sourceEncoding>utf-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.6.2</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <filtering>true</filtering> <directory>${project.build.resourceDirectory}</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.danielflower.mavenplugins</groupId> <artifactId>multi-module-maven-release-plugin</artifactId> <version>2.1.2</version> <configuration> <releaseGoals> <releaseGoal>deploy</releaseGoal> </releaseGoals> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>oss.sonatype.org</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>