-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
91 lines (86 loc) · 3.4 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>zero-ecosystem</artifactId>
<groupId>io.zerows</groupId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>zero-plugins-equip</artifactId>
<packaging>pom</packaging>
<name>Zero.Plugins.Infix.POM.${zero.version}</name>
<modules>
<!-- Common -->
<module>Zero.Plugins.Common.Security</module>
<module>Zero.Plugins.Common.Shell</module>
<module>Zero.Plugins.Common.Trash</module>
<!-- Integration -->
<module>Zero.Plugins.Integration.Feign</module>
<module>Zero.Plugins.Integration.Git</module>
<module>Zero.Plugins.Integration.SMS</module>
<module>Zero.Plugins.Integration.Wechat</module>
<!-- Office -->
<module>Zero.Plugins.Office.Excel</module>
<!-- Store -->
<module>Zero.Plugins.Store.ElasticSearch</module>
<module>Zero.Plugins.Store.Liquibase</module>
<module>Zero.Plugins.Store.Mongo</module>
<module>Zero.Plugins.Store.Neo4j</module>
<module>Zero.Plugins.Store.Redis</module>
<!-- Web -->
<module>Zero.Plugins.Video.IQIY</module>
<module>Zero.Plugins.WebSocket.Stomp</module>
</modules>
<dependencies>
</dependencies>
<build>
<plugins>
<!-- Mojo -->
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0</version>
</requireMavenVersion>
<requireJavaVersion>
<version>1.8</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${encoding}</encoding>
<!-- Disable annotation processing for ourselves. -->
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tc.java</include>
<include>**/*Te.java</include>
</includes>
<excludes>
<exclude>**/Base*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>