Skip to content

Commit c4e831f

Browse files
committed
chore: add missing pom.xml files with normalized line endings
1 parent 1ab6c5c commit c4e831f

2 files changed

Lines changed: 122 additions & 0 deletions

File tree

src/burpEx/pom.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.sqlmapwebui</groupId>
8+
<artifactId>sqlmap-webui-burp-parent</artifactId>
9+
<version>1.8.16</version>
10+
<packaging>pom</packaging>
11+
12+
<name>SQLMap WebUI Burp Extension - Parent Project</name>
13+
<description>Parent POM for SQLMap WebUI Burp Extension modules</description>
14+
15+
<properties>
16+
<maven.compiler.source>11</maven.compiler.source>
17+
<maven.compiler.target>11</maven.compiler.target>
18+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
20+
<montoya.version>2023.12.1</montoya.version>
21+
</properties>
22+
23+
<modules>
24+
<module>shared</module>
25+
<module>legacy-api</module>
26+
<module>montoya-api</module>
27+
</modules>
28+
</project>

src/burpEx/shared/pom.xml

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.sqlmapwebui</groupId>
8+
<artifactId>sqlmap-webui-burp-shared</artifactId>
9+
<version>1.8.16</version>
10+
<packaging>jar</packaging>
11+
12+
<name>SQLMap WebUI Burp Extension - Shared Module</name>
13+
<description>Shared module for Legacy API and Montoya API implementations (Java 11)</description>
14+
15+
<properties>
16+
<maven.compiler.source>11</maven.compiler.source>
17+
<maven.compiler.target>11</maven.compiler.target>
18+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
20+
</properties>
21+
22+
<dependencies>
23+
<!-- HTTP Client for backend communication -->
24+
<dependency>
25+
<groupId>com.squareup.okhttp3</groupId>
26+
<artifactId>okhttp</artifactId>
27+
<version>4.12.0</version>
28+
</dependency>
29+
30+
<!-- JSON Processing -->
31+
<dependency>
32+
<groupId>com.google.code.gson</groupId>
33+
<artifactId>gson</artifactId>
34+
<version>2.10.1</version>
35+
</dependency>
36+
37+
<!-- Logging -->
38+
<dependency>
39+
<groupId>org.slf4j</groupId>
40+
<artifactId>slf4j-api</artifactId>
41+
<version>2.0.9</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>ch.qos.logback</groupId>
45+
<artifactId>logback-classic</artifactId>
46+
<version>1.4.14</version>
47+
</dependency>
48+
49+
<!-- SQLite JDBC -->
50+
<dependency>
51+
<groupId>org.xerial</groupId>
52+
<artifactId>sqlite-jdbc</artifactId>
53+
<version>3.44.1.0</version>
54+
</dependency>
55+
56+
<!-- SnakeYAML for YAML import/export -->
57+
<dependency>
58+
<groupId>org.yaml</groupId>
59+
<artifactId>snakeyaml</artifactId>
60+
<version>2.2</version>
61+
</dependency>
62+
63+
<!-- Apache Commons CLI for command line parsing -->
64+
<dependency>
65+
<groupId>commons-cli</groupId>
66+
<artifactId>commons-cli</artifactId>
67+
<version>1.6.0</version>
68+
</dependency>
69+
</dependencies>
70+
71+
<build>
72+
<plugins>
73+
<!-- Compiler Plugin -->
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-compiler-plugin</artifactId>
77+
<version>3.11.0</version>
78+
<configuration>
79+
<source>11</source>
80+
<target>11</target>
81+
<encoding>UTF-8</encoding>
82+
<showWarnings>true</showWarnings>
83+
</configuration>
84+
</plugin>
85+
</plugins>
86+
</build>
87+
88+
<repositories>
89+
<repository>
90+
<id>central</id>
91+
<url>https://repo.maven.apache.org/maven2</url>
92+
</repository>
93+
</repositories>
94+
</project>

0 commit comments

Comments
 (0)