-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpom.xml
59 lines (51 loc) · 1.57 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
<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">
<parent>
<groupId>com.axelor</groupId>
<artifactId>axelor-parent</artifactId>
<version>0.9.0-SNAPSHOT</version>
<relativePath>axelor-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>axelor</artifactId>
<packaging>pom</packaging>
<name>Axelor</name>
<description>
Axelor enterprise applications.
</description>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<modules>
<module>axelor-parent</module>
<module>axelor-test</module>
<module>axelor-core</module>
<module>axelor-base-parent</module>
<module>axelor-module-parent</module>
<module>axelor-tools</module>
<module>axelor-maven-plugin</module>
<module>axelor-auth</module>
<module>axelor-contact</module>
<module>axelor-sale</module>
<module>axelor-project</module>
<module>axelor-data</module>
<module>axelor-meta</module>
<module>axelor-web-parent</module>
<module>axelor-web</module>
<module>axelor-demo</module>
<module>axelor-dyndemo</module>
<module>axelor-wkf</module>
<module>axelor-drools</module>
</modules>
<build>
<plugins>
<!-- Skip deployment -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>