Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 2 | <!-- |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 3 | Copyright (C) 2019 Bell Canada |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 4 | |
| 5 | Unless otherwise specified, all software contained herein is licensed |
| 6 | under the Apache License, Version 2.0 (the License); |
| 7 | you may not use this software except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 17 | --> |
Alexis de Talhouët | d4b56bc | 2019-07-01 19:25:41 -0400 | [diff] [blame] | 18 | <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ët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 20 | |
| 21 | <parent> |
| 22 | <groupId>org.onap.ccsdk.parent</groupId> |
Timoney, Dan (dt5972) | da57151 | 2019-06-20 19:17:31 -0400 | [diff] [blame] | 23 | <artifactId>spring-boot-starter-parent</artifactId> |
Timoney, Dan (dt5972) | f6aba62 | 2019-04-30 14:28:15 -0400 | [diff] [blame] | 24 | <version>1.3.0-SNAPSHOT</version> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 25 | <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) | f6aba62 | 2019-04-30 14:28:15 -0400 | [diff] [blame] | 32 | <version>0.5.0-SNAPSHOT</version> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 33 | <packaging>pom</packaging> |
| 34 | |
| 35 | <name>cds-parent</name> |
| 36 | <description>CCSDK Controller Design Studio</description> |
| 37 | |
| 38 | <modules> |
Alexis de Talhouët | 837f849 | 2019-03-27 16:42:08 -0400 | [diff] [blame] | 39 | <module>components</module> |
Nirvan Ramjuttun | 2ac64f2 | 2019-05-30 14:07:23 -0400 | [diff] [blame] | 40 | <module>cds-ui</module> |
Alexis de Talhouët | 837f849 | 2019-03-27 16:42:08 -0400 | [diff] [blame] | 41 | <module>ms</module> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 42 | </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ët | d4b56bc | 2019-07-01 19:25:41 -0400 | [diff] [blame] | 58 | <!--Specify path to load jacoco XLM report, as Sonar can't load Kotlin coverage from binary report--> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 59 | <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 Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 65 | <plugins> |
| 66 | <plugin> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 67 | <groupId>org.jacoco</groupId> |
| 68 | <artifactId>jacoco-maven-plugin</artifactId> |
| 69 | <version>${jacoco.version}</version> |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 70 | </plugin> |
| 71 | </plugins> |
| 72 | </build> |
Arundathi Patil | 3d02685 | 2018-12-14 23:03:55 +0530 | [diff] [blame] | 73 | |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 74 | <profiles> |
| 75 | <profile> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 76 | <id>blackduck</id> |
| 77 | <activation> |
| 78 | <property> |
| 79 | <name>blackduck-scan</name> |
| 80 | </property> |
| 81 | </activation> |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 82 | <build> |
| 83 | <plugins> |
| 84 | <plugin> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 85 | <groupId>com.blackducksoftware.integration</groupId> |
| 86 | <artifactId>hub-maven-plugin</artifactId> |
| 87 | <version>1.4.0</version> |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 88 | <inherited>false</inherited> |
| 89 | <configuration> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 90 | <hubProjectName>${project.name}</hubProjectName> |
| 91 | <outputDirectory>${project.basedir}</outputDirectory> |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 92 | </configuration> |
| 93 | <executions> |
| 94 | <execution> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 95 | <id>create-bdio-file</id> |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 96 | <phase>package</phase> |
| 97 | <goals> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 98 | <goal>createHubOutput</goal> |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 99 | </goals> |
| 100 | </execution> |
| 101 | </executions> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | </build> |
| 105 | </profile> |
| 106 | </profiles> |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 107 | |
Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 108 | </project> |