fix jacoco.exec file name
[appc/parent.git] / single-feature-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
7 =============================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12       http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23
24
25     <modelVersion>4.0.0</modelVersion>
26     <packaging>pom</packaging>
27     <groupId>org.onap.appc.parent</groupId>
28     <artifactId>single-feature-parent</artifactId>
29     <version>2.7.0-SNAPSHOT</version>
30
31     <parent>
32         <groupId>org.onap.ccsdk.parent</groupId>
33         <artifactId>single-feature-parent</artifactId>
34         <version>1.4.3</version>
35         <relativePath />
36     </parent>
37
38     <properties>
39         <skip.karaf.featureTest>true</skip.karaf.featureTest>
40         <commons.collections.version>3.2.2</commons.collections.version>
41         <snakeyaml.version>1.15</snakeyaml.version>
42         <tosca.datatype.version>1.5.0</tosca.datatype.version>
43         <velocity.version>1.7</velocity.version>
44         <!-- SONAR -->
45         <sonar.language>java</sonar.language>
46         <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
47         <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
48         <sonar.jacoco.reportPath>${project.build.directory}/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
49         <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
50         <sonar.projectVersion>${project.version}</sonar.projectVersion>
51         <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
52     </properties>
53
54
55     <dependencyManagement>
56         <dependencies>
57             <dependency>
58                 <groupId>org.onap.ccsdk.sli.core</groupId>
59                 <artifactId>sli-common</artifactId>
60                 <version>${ccsdk.sli.core.version}</version>
61             </dependency>
62
63             <dependency>
64                 <groupId>org.onap.ccsdk.sli.core</groupId>
65                 <artifactId>sli-provider</artifactId>
66                 <version>${ccsdk.sli.core.version}</version>
67             </dependency>
68             <dependency>
69                 <groupId>org.onap.ccsdk.sli.core</groupId>
70                 <artifactId>ccsdk-sli</artifactId>
71                 <version>${ccsdk.sli.core.version}</version>
72                 <type>xml</type>
73                 <classifier>features</classifier>
74             </dependency>
75             <dependency>
76                 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
77                 <artifactId>aai-service-provider</artifactId>
78                 <version>${sdnctl.aai.service.version}</version>
79             </dependency>
80
81             <dependency>
82                 <groupId>org.onap.ccsdk.sli.core</groupId>
83                 <artifactId>dblib-provider</artifactId>
84                 <version>${sdnctl.dblib.version}</version>
85             </dependency>
86             <dependency>
87                 <groupId>org.powermock</groupId>
88                 <artifactId>powermock-api-mockito</artifactId>
89                 <version>1.6.4</version>
90                 <scope>test</scope>
91             </dependency>
92             <dependency>
93                 <groupId>org.javassist</groupId>
94                 <artifactId>javassist</artifactId>
95                 <version>3.21.0-GA</version>
96                 <scope>test</scope>
97             </dependency>
98             <dependency>
99                 <groupId>org.mockito</groupId>
100                 <artifactId>mockito-core</artifactId>
101                 <version>1.10.19</version>
102                 <scope>test</scope>
103             </dependency>
104             <dependency>
105                 <groupId>org.powermock</groupId>
106                 <artifactId>powermock-module-junit4</artifactId>
107                 <version>1.6.4</version>
108                 <scope>test</scope>
109             </dependency>
110             <dependency>
111                 <groupId>org.powermock</groupId>
112                 <artifactId>powermock-api-support</artifactId>
113                 <version>1.6.4</version>
114                 <scope>test</scope>
115             </dependency>
116             <dependency>
117                 <groupId>org.powermock</groupId>
118                 <artifactId>powermock-reflect</artifactId>
119                 <version>1.6.4</version>
120                 <scope>test</scope>
121             </dependency>
122             <dependency>
123                 <groupId>org.powermock</groupId>
124                 <artifactId>powermock-core</artifactId>
125                 <version>1.6.4</version>
126                 <scope>test</scope>
127             </dependency>
128         </dependencies>
129     </dependencyManagement>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <groupId>org.apache.maven.plugins</groupId>
135                 <artifactId>maven-install-plugin</artifactId>
136                 <version>2.5.2</version>
137                 <executions>
138                     <execution>
139                         <id>additional-install</id>
140                         <phase>none</phase>
141                     </execution>
142                 </executions>
143             </plugin>
144         </plugins>
145     </build>
146
147 </project>