gitlog-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.danielflower.mavenplugins</groupId> <artifactId>gitlog-maven-plugin</artifactId> <version>1.14.0</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.danielflower.mavenplugins</groupId> <artifactId>gitlog-maven-plugin</artifactId> <version>1.14.0</version> <packaging>maven-plugin</packaging> <name>Maven Git Log Plugin</name> <description>Generates a changelog based on commits to a git repository in text and HTML format showing the changes that are included in each version. A possible use of this is to include these changelogs when packaging your maven project so that you have an accurate list of commits that the current package includes.</description> <url>https://github.com/danielflower/maven-gitlog-plugin</url> <inceptionYear>2011</inceptionYear> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>danielflower</id> <name>Daniel Flower</name> <url>https://github.com/danielflower/</url> <timezone>8</timezone> </developer> </developers> <scm> <connection>scm:git:git@github.com/danielflower/maven-gitlog-plugin.git</connection> <developerConnection>scm:git:git@github.com:/danielflower/maven-gitlog-plugin.git</developerConnection> <url>git://github.com/danielflower/maven-gitlog-plugin.git</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/danielflower/maven-gitlog-plugin/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/danielflower/maven-gitlog-plugin/actions</url> </ciManagement> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <plugin.goal.prefix>gitlog</plugin.goal.prefix> <github.global.server>github</github.global.server> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.8.5</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.4</version> </dependency> <dependency> <groupId>com.madgag</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>2.99.99.2.0-UNOFFICIAL-ROBERTO-RELEASE</version> <exclusions> <exclusion> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-sink-api</artifactId> <version>1.11.1</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>2.0.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.github.danielflower.mavenplugins</groupId> <artifactId>multi-module-maven-release-plugin</artifactId> <version>3.0.0</version> <configuration> <releaseGoals> <releaseGoal>clean</releaseGoal> <releaseGoal>site</releaseGoal> <releaseGoal>deploy</releaseGoal> </releaseGoals> <releaseProfiles> <releaseProfile>release</releaseProfile> <releaseProfile>gpg</releaseProfile> </releaseProfiles> </configuration> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.4</version> <executions> <execution> <id>default-descriptor</id> <phase>process-classes</phase> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>generated-helpmojo</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> <configuration> <goalPrefix>${plugin.goal.prefix}</goalPrefix> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>analyze</id> <goals> <goal>analyze-only</goal> </goals> <configuration> <failOnWarning>true</failOnWarning> <ignoreNonCompile>true</ignoreNonCompile> <outputXML>true</outputXML> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> <dependencies> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-markdown</artifactId> <version>1.6</version> </dependency> </dependencies> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.4</version> <configuration> <goalPrefix>${plugin.goal.prefix}</goalPrefix> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.18.1</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.8</version> <reportSets> <reportSet> <reports> <report>project-team</report> <report>cim</report> <report>issue-tracking</report> <report>license</report> <report>scm</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <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> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnWarnings>true</failOnWarnings> </configuration> </execution> </executions> <configuration> <source>8</source> <detectJavaApiLink>false</detectJavaApiLink> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.11</version> <executions> <execution> <phase>site</phase> <goals> <goal>site</goal> </goals> </execution> </executions> <configuration> <message>Creating site for ${project.version}</message> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>