-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
125 lines (122 loc) · 5.46 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
116
117
118
119
120
121
122
123
124
125
<?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-energy</artifactId>
<packaging>pom</packaging>
<name>Zero.Core.POM.${zero.version}</name>
<modules>
<!-- Runtime -->
<!-- <module>zero-core-runtime-assembly</module>-->
<!-- <module>zero-core-runtime-metadata</module>-->
<!-- <module>zero-core-runtime-domain</module>-->
<!-- <module>zero-core-runtime-cloud</module>-->
<!-- <module>zero-core-runtime-security</module>-->
<!-- <module>zero-core-runtime-configuration</module>-->
<!-- Feature -->
<!-- <module>zero-core-feature-toolkit-expression</module>-->
<!-- <module>zero-core-feature-database-cp</module>-->
<!-- <module>zero-core-feature-database-jooq</module>-->
<!-- <module>zero-core-feature-database-cache</module>-->
<!-- <module>zero-core-feature-unit-testing</module>-->
<!-- <module>zero-core-feature-web-cache</module>-->
<!-- <module>zero-core-feature-web-client</module>-->
<!-- <module>zero-core-feature-web-session</module>-->
<!-- <module>zero-core-feature-web-shared</module>-->
<!-- <module>zero-core-feature-web-monitor</module>-->
<!-- <module>zero-core-feature-web-mbse</module>-->
<!-- <module>zero-core-feature-web-utility-x</module>-->
<!-- <module>zero-core-feature-web-websocket</module>-->
<!-- <module>zero-core-feature-web-security</module>-->
<!-- Core -->
<!-- <module>zero-core-web-model</module>-->
<!-- <module>zero-core-web-scheduler</module>-->
<!-- <module>zero-core-web-invocation</module>-->
<!-- <module>zero-core-web-io</module>-->
<!-- <module>zero-core-web-validation</module>-->
<!-- <module>zero-core-web-container</module>-->
<!-- Entry Facade -->
<!-- <module>zero-core-entry-facade</module>-->
<!-- <module>zero-core-entry-toolkit</module>-->
</modules>
<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>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.codehaus.mojo/exec-maven-plugin -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>build-submodule</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<workingDirectory>${project.basedir}</workingDirectory>
<executable>
./mvn-build.sh
</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>