-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·42 lines (38 loc) · 1.47 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: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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.atinbo</groupId>
<artifactId>atinbo-kernel</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<revision>1.0.0-SNAPSHOT</revision>
<flatten-maven-plugin.version>1.1.0</flatten-maven-plugin.version>
</properties>
<modules>
<module>atinbo-parent</module>
<module>atinbo-dependencies</module>
<module>atinbo-common</module>
<module>atinbo-model</module>
<module>atinbo-core</module>
<module>atinbo-dal</module>
<module>atinbo-cache</module>
<module>atinbo-security</module>
<module>atinbo-web</module>
<module>atinbo-starter</module>
<module>atinbo-generate</module>
<module>atinbo-pressure</module>
</modules>
<distributionManagement>
<repository>
<id>releases</id>
<name>Nexus Release</name>
<url>http://10.10.4.106/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Nexus SNAPSHOTS</name>
<url>http://10.10.4.106/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>