-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpom.xml
174 lines (158 loc) · 6.79 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.projectdiscovery</groupId>
<artifactId>nuclei-burp-plugin</artifactId>
<version>1.1.3-SNAPSHOT</version>
<name>Nuclei Burp Suite plugin</name>
<description>A Burp Suite 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>
<organization>Project Discovery</organization>
<organizationUrl>https://projectdiscovery.io</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/projectdiscovery/nuclei-burp-plugin</connection>
<developerConnection>scm:git:git@github.com: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>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
<maven-release-plugin.version>3.0.0-M7</maven-release-plugin.version>
<burp-extender-api.version>2.3</burp-extender-api.version>
<snakeyaml.version>1.33</snakeyaml.version>
<gson.version>2.10.1</gson.version>
<rsyntaxtextarea.version>3.3.4</rsyntaxtextarea.version>
<autocomplete.version>3.3.1</autocomplete.version>
<junit-jupiter.version>5.10.2</junit-jupiter.version>
<maven-surefire-plugin.version>3.3.0</maven-surefire-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>net.portswigger.burp.extender</groupId>
<artifactId>burp-extender-api</artifactId>
<version>${burp-extender-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${snakeyaml.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.fifesoft</groupId>
<artifactId>rsyntaxtextarea</artifactId>
<version>${rsyntaxtextarea.version}</version>
</dependency>
<dependency>
<groupId>com.fifesoft</groupId>
<artifactId>autocomplete</artifactId>
<version>${autocomplete.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.1.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<fork>true</fork>
<optimize>true</optimize>
<showDeprecation>true</showDeprecation>
<verbose>true</verbose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>
io.projectdiscovery.nuclei.gui.TemplateGeneratorWindow
</mainClass>
</manifest>
</archive>
</configuration>
</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>