Skip to content

Commit 905c8e5

Browse files
committed
fix: pom.xml added
1 parent 7d262c6 commit 905c8e5

2 files changed

Lines changed: 57 additions & 0 deletions

File tree

.DS_Store

-2 KB
Binary file not shown.

pom.xml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.code</groupId>
6+
<artifactId>advancedsql</artifactId>
7+
<version>2.0.0</version>
8+
<properties>
9+
<maven.compiler.source>11</maven.compiler.source>
10+
<maven.compiler.target>11</maven.compiler.target>
11+
</properties>
12+
13+
<repositories>
14+
<repository>
15+
<id>libs</id>
16+
<url>file://${project.basedir}/lib</url>
17+
</repository>
18+
</repositories>
19+
<dependencies>
20+
<dependency>
21+
<groupId>org.apache.commons</groupId>
22+
<artifactId>commons-math3</artifactId>
23+
<version>3.6.1</version>
24+
<scope>compile</scope>
25+
</dependency>
26+
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
27+
<dependency>
28+
<groupId>mysql</groupId>
29+
<artifactId>mysql-connector-java</artifactId>
30+
<version>8.0.21</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.guava</groupId>
34+
<artifactId>guava</artifactId>
35+
<version>28.2-jre</version>
36+
<scope>runtime</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>junit</groupId>
40+
<artifactId>junit</artifactId>
41+
<version>4.12</version>
42+
<scope>test</scope>
43+
</dependency>
44+
</dependencies>
45+
<build>
46+
<plugins>
47+
<plugin>
48+
<artifactId>maven-compiler-plugin</artifactId>
49+
<version>3.5.1</version>
50+
<configuration>
51+
<source>1.8</source>
52+
<target>1.8</target>
53+
</configuration>
54+
</plugin>
55+
</plugins>
56+
</build>
57+
</project>

0 commit comments

Comments
 (0)