-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
115 lines (103 loc) · 3.32 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
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
112
113
114
115
<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-utils</groupId>
<artifactId>commons-utils</artifactId>
<version>1.0.0</version>
<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>
<!-- commons-io版本号 -->
<commons-io.version>2.4</commons-io.version>
<!-- commons-collections版本号 -->
<commons-collections.version>3.2.1</commons-collections.version>
<!-- jep版本号 -->
<jep.version>2.4.2</jep.version>
<!-- 自定义-commons-encoding版本号 -->
<commons-encoding.version>1.0.0</commons-encoding.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>
<!-- io工具包 -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<!-- collections工具包 -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${commons-collections.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.scijava/jep -->
<dependency>
<groupId>org.scijava</groupId>
<artifactId>jep</artifactId>
<version>${jep.version}</version>
</dependency>
<!-- 自定义-commons-encoding工具包 -->
<dependency>
<groupId>io.github.bincool</groupId>
<artifactId>commons-encoding</artifactId>
<version>${commons-encoding.version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<!-- <excludes> <exclude>**/io/github/bincool/test/**</exclude> </excludes> -->
</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>