git-versioner-maven-extension
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.manikmagar</groupId> <artifactId>git-versioner-maven-extension</artifactId> <version>0.9.2</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> <groupId>com.github.manikmagar</groupId> <artifactId>git-versioner-maven-extension</artifactId> <version>0.9.2</version> <name>Git Versioner Maven Extension</name> <description>Generate maven project version from git commit logs</description> <url>https://github.com/manikmagar/git-versioner-maven-plugin/git-versioner-maven-extension</url> <licenses> <license> <name>MIT</name> <url>https://spdx.org/licenses/MIT.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>manikmagar</id> <name>Manik Magar</name> <url>https://manik.magar.me</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:manikmagar/git-versioner-maven-plugin.git/git-versioner-maven-extension</connection> <developerConnection>scm:ssh:git@github.com:manikmagar/git-versioner-maven-plugin.git/git-versioner-maven-extension</developerConnection> <url>git@github.com:manikmagar/git-versioner-maven-plugin.git/git-versioner-maven-extension</url> </scm> <dependencies> <dependency> <groupId>com.github.manikmagar</groupId> <artifactId>git-versioner-maven-core</artifactId> <version>0.9.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.bsideup.jabel</groupId> <artifactId>jabel-javac-plugin</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> </dependencies> </project>