-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
111 lines (104 loc) · 3.21 KB
/
pom.xml
File metadata and controls
111 lines (104 loc) · 3.21 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<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>commons-encoding</groupId>
<artifactId>commons-encoding</artifactId>
<version>1.0.0</version>
<name>commons-encoding</name>
<description>commons-encoding</description>
<repositories>
<repository>
<id>bincool-maven-repository</id>
<name>bincool-maven-repository</name>
<url>https://raw.githubusercontent.com/bincool/maven-repository/master/</url>
</repository>
</repositories>
<properties>
<!-- junit版本号 -->
<junit.version>4.11</junit.version>
<!-- log4j2版本号 -->
<log4j2.version>2.6.2</log4j2.version>
<!-- cpdetector版本号 -->
<cpdetector.version>1.0.10</cpdetector.version>
<!-- cpdetector版本号 -->
<antlr.version>2.7.4</antlr.version>
<!-- cpdetector版本号 -->
<chardet.version>1.0</chardet.version>
<!-- cpdetector版本号 -->
<jargs.version>1.0</jargs.version>
</properties>
<dependencies>
<!-- junit工具包 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<!-- 表示开发的时候引入,发布的时候不会加载此包 -->
<!-- <scope>test</scope> -->
</dependency>
<!-- log4j2工具包 -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2.version}</version>
</dependency>
<!-- cpdetector-begin -->
<dependency>
<groupId>io.github.encoding-detect</groupId>
<artifactId>cpdetector</artifactId>
<version>${cpdetector.version}</version>
</dependency>
<!-- cpdetector依赖包antlr -->
<dependency>
<groupId>io.github.encoding-detect</groupId>
<artifactId>antlr</artifactId>
<version>${antlr.version}</version>
</dependency>
<!-- cpdetector依赖包chardet -->
<dependency>
<groupId>io.github.encoding-detect</groupId>
<artifactId>chardet</artifactId>
<version>${chardet.version}</version>
</dependency>
<!-- cpdetector依赖包jargs -->
<dependency>
<groupId>io.github.encoding-detect</groupId>
<artifactId>jargs</artifactId>
<version>${jargs.version}</version>
</dependency>
<!-- cpdetector-end -->
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifestEntries>
<Class-Path>.</Class-Path>
</manifestEntries>
</archive>
<excludes>
<exclude>io/github/bincool/test/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>