version-based-on-commit-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>su.rastov.maven</groupId> <artifactId>version-based-on-commit-maven-plugin</artifactId> <version>0.5.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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> <parent> <groupId>su.povolzhye.parents</groupId> <artifactId>main</artifactId> <version>0.0.6</version> </parent> <groupId>su.rastov.maven</groupId> <artifactId>version-based-on-commit-maven-plugin</artifactId> <version>0.5.1</version> <packaging>maven-plugin</packaging> <description>Change version on commit in CI.</description> <url>https://gitlab.com/povolzhye/maven/version-based-on-commit-maven-plugin</url> <licenses> <license> <name>New BSD License</name> <url>https://en.wikipedia.org/wiki/BSD_licenses</url> </license> </licenses> <developers> <developer> <name>Vladimir Rastov</name> <email>vrastov@gmail.com</email> </developer> <developer> <name>Fedor Sabeshkin</name> <email>fedor.sabeshkin@gmail.com</email> </developer> <developer> <name>Arsen Minnullin</name> <email>minnullinaarsen97@gmail.com</email> </developer> </developers> <scm> <url>https://gitlab.com/povolzhye/maven/version-based-on-commit-maven-plugin</url> </scm> <properties> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.source>17</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sonar.organization>vrastov</sonar.organization> </properties> <dependencies> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>7.1.0.202411261347-r</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.9.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.9.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.15.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.15.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.15.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>3.9.0</version> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.apache.ivy</groupId> <artifactId>ivy</artifactId> <version>2.5.3</version> </dependency> </dependencies> <configuration> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> </configuration> </plugin> </plugins> </build> </project>