forked from Dreampie/Resty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
42 lines (39 loc) · 1.26 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.dreampie</groupId>
<artifactId>resty</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>resty-route</module>
<module>resty-orm-sql</module>
<module>resty-nosql</module>
<module>resty-example</module>
<module>resty-cache</module>
<module>resty-log</module>
<module>resty-common</module>
<module>resty-upload</module>
<module>resty-security</module>
<module>resty-client</module>
<module>resty-quartz</module>
</modules>
<name>resty</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<finalName>resty</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>