-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
45 lines (38 loc) · 1.29 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This software is OSI Certified Open Source Software.
OSI Certified is a certification mark of the Open Source Initiative
The license (Mozilla version 1.0) can be read at the MMBase site.
See http://www.MMBase.org/license
-->
<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>
<parent>
<groupId>org.cmscontainer</groupId>
<artifactId>cmsc-project</artifactId>
<version>1.8.11-SNAPSHOT</version>
<relativePath>CMSContainer/pom.xml</relativePath>
</parent>
<artifactId>cmsc-main</artifactId>
<name>CMS Container</name>
<packaging>pom</packaging>
<modules>
<module>CMSContainer</module>
<module>CMSContainer_Modules</module>
<module>CMSContainer_Portlets</module>
<module>CMSContainer_Templates</module>
<module>CMSContainer_Demo/demo.cmscontainer.org</module>
</modules>
<profiles>
<profile>
<id>sonar</id>
<!-- Sonar will run on one level higher in the CI -->
<modules>
<module>CMSContainer</module>
<module>CMSContainer_Modules</module>
<module>CMSContainer_Portlets</module>
</modules>
</profile>
</profiles>
</project>