-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom.xml
67 lines (56 loc) · 2.22 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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.chpengzh</groupId>
<artifactId>sl4fj-demo</artifactId>
<name>SLF4J Demo</name>
<version>1.0-SNAPSHOT</version>
<scm>
<connection>scm:git:https://github.com/my-helloworld/slf4j-demo.git</connection>
<developerConnection>scm:git:https://github.com/my-helloworld/slf4j-demo.git</developerConnection>
<url>https://github.com/my-helloworld/slf4j-demo</url>
</scm>
<developers>
<developer>
<id>chpengzh</id>
<name>Pengzhi.Chen</name>
<url>https://chpengzh.com</url>
<email>[email protected]</email>
<timezone>+8</timezone>
</developer>
</developers>
<properties>
<!-- JDK compiler level setting -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Dependency version, ASCII order inc. -->
<dep.distruptor.version>3.4.2</dep.distruptor.version>
<dep.junit.version>4.11</dep.junit.version>
<dep.slf4j.version>1.7.25</dep.slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${dep.slf4j.version}</version>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>${dep.distruptor.version}</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.slf4j</groupId>-->
<!--<artifactId>slf4j-log4j12</artifactId>-->
<!--<version>${dep.slf4j.version}</version>-->
<!--</dependency>-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${dep.junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>