This commit is contained in:
Hanshuo Zeng
2020-03-04 08:34:08 +08:00
commit 4b772bb3b7
14 changed files with 816 additions and 0 deletions

28
pom.xml Normal file
View File

@@ -0,0 +1,28 @@
<?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>com.hans0924</groupId>
<artifactId>fsd</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<slf4j.version>1.7.30</slf4j.version>
<javolution.version>6.0.0</javolution.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.javolution</groupId>
<artifactId>javolution-core-java</artifactId>
<version>${javolution.version}</version>
</dependency>
</dependencies>
</project>