conventional-commits-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.videki.semver</groupId> <artifactId>conventional-commits-parent</artifactId> <version>0.2.8</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"> <modelVersion>4.0.0</modelVersion> <groupId>net.videki.semver</groupId> <artifactId>conventional-commits-parent</artifactId> <packaging>pom</packaging> <version>0.2.8</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>11</java.version> <clover.version>4.4.1</clover.version> <clover.check.ratio.min>50%</clover.check.ratio.min> </properties> <modules> <module>conventional-commits-common</module> <module>conventional-commits-maven-plugin</module> </modules> <name>Conventional Commits Project</name> <description>Provides conventional commits plugins for Java build systems.</description> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/videki/conventional-commits-for-java.git</url> <connection>scm:git:${project.scm.url}</connection> <developerConnection>scm:git:${project.scm.url}</developerConnection> <tag>v0.2.8</tag> </scm> <url>https://github.com/videki/conventional-commits-for-java</url> <dependencies> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>6.1.0.202203080745-r</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.36</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.5.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>8</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <dryRun>false</dryRun> <pushChanges>true</pushChanges> <tagNameFormat>v@{project.version}</tagNameFormat> <allowTimestampedSnapshots>false</allowTimestampedSnapshots> <scmCommentPrefix xml:space="preserve">ci: </scmCommentPrefix> </configuration> </plugin> </plugins> </build> <issueManagement> <system>github</system> <url>https://github.com/videki/conventional-commits-for-java/issues</url> </issueManagement> <developers> <developer> <name>Scott Rossillo</name> <organization>Smartling, Inc.</organization> <url>https://github.com/foo4u/</url> </developer> <developer> <name>Levente Ban</name> <url>https://github.com/videki/</url> <email>oss.levente.ban@gmail.com</email> </developer> </developers> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>coverage</id> <build> <plugins> <plugin> <groupId>org.openclover</groupId> <artifactId>clover-maven-plugin</artifactId> <version>${clover.version}</version> <configuration> <targetPercentage>${clover.check.ratio.min}</targetPercentage> <snapshot>${user.home}/.clover/atlassian-plugins-clover.snapshot</snapshot> <singleCloverDatabase>true</singleCloverDatabase> <generatePdf>false</generatePdf> <generateXml>true</generateXml> <generateHtml>true</generateHtml> <generateJson>false</generateJson> </configuration> <executions> <execution> <id>clover-clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> <execution> <id>clover</id> <phase>process-sources</phase> <goals> <goal>setup</goal> </goals> </execution> <execution> <id>clover-integration-test-setup</id> <phase>pre-integration-test</phase> <goals> <goal>optimizeIntegration</goal> </goals> </execution> <execution> <phase>verify</phase> <goals> <goal>clover</goal> <goal>log</goal> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.openclover</groupId> <artifactId>clover-maven-plugin</artifactId> <version>${clover.version}</version> </plugin> </plugins> </reporting> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <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> <version>3.3.2</version> <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>1.6</version> <configuration> <gpgArguments> <arg>--batch</arg> <arg>--no-tty</arg> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <!--plugin> <groupId>com.smartling.cc4j</groupId> <artifactId>conventional-commits-maven-plugin</artifactId> <version>0.2.0</version> <inherited>false</inherited> <executions> <execution> <id>version</id> <phase>verify</phase> <goals> <goal>version</goal> </goals> </execution> </executions> </plugin--> </plugins> </build> </profile> </profiles> </project>