File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments