blob: 0d271133a9969188bf239af1dcf108881dbb1d4b [file] [log] [blame]
Timoney, Dan (dt5972)60315522018-07-11 15:52:33 -04001<?xml version="1.0" encoding="UTF-8"?>
2<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">
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -05003 <modelVersion>4.0.0</modelVersion>
Timoney, Dan (dt5972)60315522018-07-11 15:52:33 -04004
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
Dan Timoneyb28d09d2022-01-03 14:17:00 -05007 <artifactId>spring-boot-25-starter-parent</artifactId>
Dan Timoneyc5fed0e2022-09-14 10:39:23 -04008 <version>2.4.2</version>
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -05009 <relativePath/>
10 </parent>
Timoney, Dan (dt5972)60315522018-07-11 15:52:33 -040011
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050012 <groupId>org.onap.ccsdk.apps</groupId>
13 <artifactId>ccsdk-apps</artifactId>
Dan Timoneya33cd392022-03-31 14:10:53 -040014 <version>1.4.0-SNAPSHOT</version>
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050015 <packaging>pom</packaging>
Timoney, Dan (dt5972)60315522018-07-11 15:52:33 -040016
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050017 <name>ccsdk-apps</name>
18 <description>CCSDK applications</description>
19 <url>https://wiki.onap.org</url>
20 <organization>
21 <name>ONAP</name>
22 </organization>
Timoney, Dan (dt5972)60315522018-07-11 15:52:33 -040023
Dan Timoneyb28d09d2022-01-03 14:17:00 -050024 <modules>
25 <module>services</module>
26 <module>ms</module>
27 </modules>
28
29 <scm>
30 <connection>scm:git:ssh://git@${onap.git.host}/apps.git</connection>
31 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/apps.git</developerConnection>
32 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/apps/browse</url>
33 </scm>
34
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050035 <properties>
36 <!--Don't set any language to let sonar enable multi-language support-->
37 <sonar.language/>
38 <!--Provide src/main as source path so both src/main/java and src/main/kotlin are scanned-->
39 <sonar.sources>src/main</sonar.sources>
40 <!--Provide src/test as source path for test so both src/test/java and src/test/kotlin are scanned-->
41 <sonar.tests>src/test</sonar.tests>
42 <!--Only include java and kt files to the scan-->
43 <sonar.inclusions>**/*.java,**/*.kt</sonar.inclusions>
44 <!--Specify path to load jacoco XLM report, as Sonar can't load Kotlin coverage from binary report.
45 Note: coverage for now is invalid and is failing to load because of:
46 "Cannot import coverage information for file '{file}', coverage data is invalid."
47 see https://github.com/jacoco/jacoco/issues/763
Timoney, Dan (dt5972)a3b29fe2019-02-21 09:54:19 -050048 That issue has been fixed in 0.8.3 , so we override the default ONAP
49 version here to pick up that fix -->
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050050 <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
Timoney, Dan (dt5972)a3b29fe2019-02-21 09:54:19 -050051 <jacoco.version>0.8.3</jacoco.version>
Dan Timoney67eff542022-07-15 11:31:53 -040052 <ccsdk.sli.version>1.5.0-SNAPSHOT</ccsdk.sli.version>
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050053 </properties>
Alexis de Talhouët5decf252019-01-03 16:53:40 -050054
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050055 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.jacoco</groupId>
59 <artifactId>jacoco-maven-plugin</artifactId>
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050060 <version>${jacoco.version}</version>
61 </plugin>
62 </plugins>
63 </build>
Alexis de Talhouët5decf252019-01-03 16:53:40 -050064
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050065 <profiles>
66 <profile>
67 <id>blackduck</id>
68 <activation>
69 <property>
70 <name>blackduck-scan</name>
71 </property>
72 </activation>
73 <build>
Timoney, Dan (dt5972)63bf77e2019-12-11 12:13:29 -050074 <plugins>
75 <plugin>
76 <groupId>com.blackducksoftware.integration</groupId>
77 <artifactId>hub-maven-plugin</artifactId>
78 <version>1.4.0</version>
79 <inherited>false</inherited>
80 <configuration>
81 <hubProjectName>${project.name}</hubProjectName>
82 <outputDirectory>${project.basedir}</outputDirectory>
83 </configuration>
84 <executions>
85 <execution>
86 <id>create-bdio-file</id>
87 <phase>package</phase>
88 <goals>
89 <goal>createHubOutput</goal>
90 </goals>
91 </execution>
92 </executions>
93 </plugin>
94 </plugins>
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050095 </build>
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -050096 </profile>
Timoney, Dan (dt5972)63bf77e2019-12-11 12:13:29 -050097 <profile>
98 <id>dependency-list</id>
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>com.github.ferstl</groupId>
103 <artifactId>depgraph-maven-plugin</artifactId>
104 <executions>
105 <execution>
106 <phase>validate</phase>
107 <inherited>false</inherited>
108 <goals>
109 <goal>aggregate</goal>
110 </goals>
111 </execution>
112 </executions>
113 </plugin>
114 <plugin>
115 <groupId>org.codehaus.mojo</groupId>
116 <artifactId>build-helper-maven-plugin</artifactId>
117 <executions>
118 <execution>
119 <id>attach-artifacts</id>
120 <phase>package</phase>
121 <inherited>false</inherited>
122 <goals>
123 <goal>attach-artifact</goal>
124 </goals>
125 <configuration>
126 <artifacts>
127 <artifact>
128 <file>${dependency-list.file}</file>
129 <type>txt</type>
130 <classifier>dependencies</classifier>
131 </artifact>
132 </artifacts>
133 </configuration>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 </build>
139 </profile>
Steve Alphonse Siani545a3ab2019-01-21 11:55:48 -0500140 </profiles>
Timoney, Dan (dt5972)60315522018-07-11 15:52:33 -0400141</project>