-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
63 lines (56 loc) · 1.84 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
<?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>net.moopa3376.guard</groupId>
<artifactId>guard-all</artifactId>
<version>1.1.0</version>
<modules>
<module>guard-core</module>
<module>guard-web</module>
<module>guard-demo</module>
</modules>
<packaging>pom</packaging>
<name>guard-all</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.12</junit.version>
<slf4j.version>1.7.21</slf4j.version>
<log4j.version>1.2.17</log4j.version>
<servlet.version>2.5</servlet.version>
<ehcache.version>3.3.1</ehcache.version>
<spring.version>4.2.5.RELEASE</spring.version>
<jwt.version>3.2.0</jwt.version>
<gson.version>2.6.2</gson.version>
</properties>
<build>
<!--<resources>-->
<!--<resource>-->
<!--<directory>src/main/resources</directory>-->
<!--<filtering>false</filtering>-->
<!--</resource>-->
<!--</resources>-->
<plugins>
<!--用于多项目打包-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<configuration>
<finalName>guard</finalName>
<descriptors>
<descriptor>release.xml</descriptor>
<descriptor>release-demo.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>