Skip to content

Commit 30b9e92

Browse files
committed
initial commit
1 parent f548217 commit 30b9e92

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

pom.xml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>burp</groupId>
6+
<artifactId>AttackSelector</artifactId>
7+
<version>0.1</version>
8+
<packaging>jar</packaging>
9+
10+
<name>Burp Suite Attack Selector Plugin</name>
11+
12+
<properties>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
</properties>
15+
16+
<dependencies>
17+
<!-- https://mvnrepository.com/artifact/org.json/json -->
18+
<dependency>
19+
<groupId>org.json</groupId>
20+
<artifactId>json</artifactId>
21+
<version>20170516</version>
22+
</dependency>
23+
<!-- https://mvnrepository.com/artifact/net.portswigger/burp-extender-api -->
24+
<dependency>
25+
<groupId>net.portswigger.burp.extender</groupId>
26+
<artifactId>burp-extender-api</artifactId>
27+
<version>1.7.22</version>
28+
</dependency>
29+
</dependencies>
30+
<build>
31+
<plugins>
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-compiler-plugin</artifactId>
35+
<configuration>
36+
<source>1.7</source>
37+
<target>1.7</target>
38+
<descriptorRefs>
39+
<descriptorRef>jar-with-dependencies</descriptorRef>
40+
</descriptorRefs>
41+
<minimizeJar>true</minimizeJar>
42+
43+
</configuration>
44+
</plugin>
45+
</plugins>
46+
</build>
47+
<url>https://github.com/inode-/AttackSelector</url>
48+
</project>

0 commit comments

Comments
 (0)