Skip to content

Commit

Permalink
Setting up the maven release plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
forgedhallpass committed Feb 16, 2022
1 parent 492ddd7 commit 5b11fb3
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@
<description>A BurpSuite plugin created to ease nuclei template development.</description>
<url>https://github.com/projectdiscovery/nuclei</url>

<organization>
<name>ProjectDiscovery, Inc</name>
<url>https://projectdiscovery.io</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/projectdiscovery/nuclei/blob/master/LICENSE.md</url>
</license>
</licenses>

<developers>
<developer>
<id>forgedhallpass</id>
Expand All @@ -26,6 +29,18 @@
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/projectdiscovery/nuclei-burp-plugin</connection>
<developerConnection>scm:git:[email protected]:projectdiscovery/nuclei-burp-plugin.git</developerConnection>
<url>https://github.com/projectdiscovery/nuclei-burp-plugin</url>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>GitHub Issue Tracking</system>
<url>https://github.com/projectdiscovery/nuclei-burp-plugin/issues</url>
</issueManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
Expand All @@ -34,6 +49,7 @@

<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
<maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version>

<burp-extender-api.version>2.3</burp-extender-api.version>
<snakeyaml.version>1.29</snakeyaml.version>
Expand Down Expand Up @@ -136,6 +152,17 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 5b11fb3

Please sign in to comment.