blob: 2a227c7476444b265f3a56155dca9ba78eae37f8 [file] [log] [blame]
Timoney, Dan (dt5972)84b361d2019-04-24 15:05:00 -04001<?xml version="1.0" encoding="UTF-8"?>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +01002<!--
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -04003Copyright (C) 2019 Bell Canada
Arundathi Patil3d026852018-12-14 23:03:55 +05304
5Unless otherwise specified, all software contained herein is licensed
6under the Apache License, Version 2.0 (the License);
7you may not use this software except in compliance with the License.
8You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010017-->
Alexis de Talhouëtd4b56bc2019-07-01 19:25:41 -040018<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040020
21 <parent>
22 <groupId>org.onap.ccsdk.parent</groupId>
Timoney, Dan (dt5972)da571512019-06-20 19:17:31 -040023 <artifactId>spring-boot-starter-parent</artifactId>
Timoney, Dan (dt5972)f6aba622019-04-30 14:28:15 -040024 <version>1.3.0-SNAPSHOT</version>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040025 <relativePath/>
26 </parent>
27
28 <modelVersion>4.0.0</modelVersion>
29
30 <groupId>org.onap.ccsdk.cds</groupId>
31 <artifactId>parent</artifactId>
Timoney, Dan (dt5972)f6aba622019-04-30 14:28:15 -040032 <version>0.5.0-SNAPSHOT</version>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040033 <packaging>pom</packaging>
34
35 <name>cds-parent</name>
36 <description>CCSDK Controller Design Studio</description>
37
38 <modules>
Alexis de Talhouët837f8492019-03-27 16:42:08 -040039 <module>components</module>
Nirvan Ramjuttun2ac64f22019-05-30 14:07:23 -040040 <module>cds-ui</module>
Alexis de Talhouët837f8492019-03-27 16:42:08 -040041 <module>ms</module>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040042 </modules>
43
44 <url>https://wiki.onap.org</url>
45 <organization>
46 <name>ONAP</name>
47 </organization>
48
49 <properties>
50 <!--Don't set any language to let sonar enable multi-language support-->
51 <sonar.language/>
52 <!--Provide src/main as source path so both src/main/java and src/main/kotlin are scanned-->
53 <sonar.sources>src/main</sonar.sources>
54 <!--Provide src/test as source path for test so both src/test/java and src/test/kotlin are scanned-->
55 <sonar.tests>src/test</sonar.tests>
56 <!--Only include java and kt files to the scan-->
57 <sonar.inclusions>**/*.java,**/*.kt</sonar.inclusions>
Alexis de Talhouëtd4b56bc2019-07-01 19:25:41 -040058 <!--Specify path to load jacoco XLM report, as Sonar can't load Kotlin coverage from binary report-->
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040059 <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
60 </sonar.coverage.jacoco.xmlReportPaths>
61 <jacoco.version>0.8.3</jacoco.version>
62 </properties>
63
64 <build>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010065 <plugins>
66 <plugin>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040067 <groupId>org.jacoco</groupId>
68 <artifactId>jacoco-maven-plugin</artifactId>
69 <version>${jacoco.version}</version>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010070 </plugin>
71 </plugins>
72 </build>
Arundathi Patil3d026852018-12-14 23:03:55 +053073
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010074 <profiles>
75 <profile>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040076 <id>blackduck</id>
77 <activation>
78 <property>
79 <name>blackduck-scan</name>
80 </property>
81 </activation>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010082 <build>
83 <plugins>
84 <plugin>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040085 <groupId>com.blackducksoftware.integration</groupId>
86 <artifactId>hub-maven-plugin</artifactId>
87 <version>1.4.0</version>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010088 <inherited>false</inherited>
89 <configuration>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040090 <hubProjectName>${project.name}</hubProjectName>
91 <outputDirectory>${project.basedir}</outputDirectory>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010092 </configuration>
93 <executions>
94 <execution>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040095 <id>create-bdio-file</id>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010096 <phase>package</phase>
97 <goals>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040098 <goal>createHubOutput</goal>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +010099 </goals>
100 </execution>
101 </executions>
102 </plugin>
103 </plugins>
104 </build>
105 </profile>
106 </profiles>
Sylvain Desbureauxae7b27a2019-02-14 13:45:22 +0100107
Timoney, Dan (dt5972)84b361d2019-04-24 15:05:00 -0400108</project>