Update INFO.yaml
[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.1-SNAPSHOT</version>
30
31     <parent>
32         <groupId>org.onap.ccsdk.parent</groupId>
33         <artifactId>single-feature-parent</artifactId>
34         <version>1.5.1</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.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
47         <sonar.coverage.jacoco.xmlReportPaths>
48             ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
49         </sonar.coverage.jacoco.xmlReportPaths>
50         <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
51         <sonar.projectVersion>${project.version}</sonar.projectVersion>
52         <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
53     </properties>
54
55
56     <dependencyManagement>
57         <dependencies>
58             <dependency>
59                 <groupId>org.onap.ccsdk.sli.core</groupId>
60                 <artifactId>sli-common</artifactId>
61                 <version>${ccsdk.sli.core.version}</version>
62             </dependency>
63
64             <dependency>
65                 <groupId>org.onap.ccsdk.sli.core</groupId>
66                 <artifactId>sli-provider</artifactId>
67                 <version>${ccsdk.sli.core.version}</version>
68             </dependency>
69             <dependency>
70                 <groupId>org.onap.ccsdk.sli.core</groupId>
71                 <artifactId>ccsdk-sli</artifactId>
72                 <version>${ccsdk.sli.core.version}</version>
73                 <type>xml</type>
74                 <classifier>features</classifier>
75             </dependency>
76             <dependency>
77                 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
78                 <artifactId>aai-service-provider</artifactId>
79                 <version>${sdnctl.aai.service.version}</version>
80             </dependency>
81
82             <dependency>
83                 <groupId>org.onap.ccsdk.sli.core</groupId>
84                 <artifactId>dblib-provider</artifactId>
85                 <version>${sdnctl.dblib.version}</version>
86             </dependency>
87             <dependency>
88                 <groupId>org.powermock</groupId>
89                 <artifactId>powermock-api-mockito</artifactId>
90                 <version>1.6.4</version>
91                 <scope>test</scope>
92             </dependency>
93             <dependency>
94                 <groupId>org.javassist</groupId>
95                 <artifactId>javassist</artifactId>
96                 <version>3.21.0-GA</version>
97                 <scope>test</scope>
98             </dependency>
99             <dependency>
100                 <groupId>org.mockito</groupId>
101                 <artifactId>mockito-core</artifactId>
102                 <version>1.10.19</version>
103                 <scope>test</scope>
104             </dependency>
105             <dependency>
106                 <groupId>org.powermock</groupId>
107                 <artifactId>powermock-module-junit4</artifactId>
108                 <version>1.6.4</version>
109                 <scope>test</scope>
110             </dependency>
111             <dependency>
112                 <groupId>org.powermock</groupId>
113                 <artifactId>powermock-api-support</artifactId>
114                 <version>1.6.4</version>
115                 <scope>test</scope>
116             </dependency>
117             <dependency>
118                 <groupId>org.powermock</groupId>
119                 <artifactId>powermock-reflect</artifactId>
120                 <version>1.6.4</version>
121                 <scope>test</scope>
122             </dependency>
123             <dependency>
124                 <groupId>org.powermock</groupId>
125                 <artifactId>powermock-core</artifactId>
126                 <version>1.6.4</version>
127                 <scope>test</scope>
128             </dependency>
129         </dependencies>
130     </dependencyManagement>
131
132     <build>
133         <plugins>
134             <plugin>
135                 <groupId>org.apache.maven.plugins</groupId>
136                 <artifactId>maven-install-plugin</artifactId>
137                 <version>2.5.2</version>
138                 <executions>
139                     <execution>
140                         <id>additional-install</id>
141                         <phase>none</phase>
142                     </execution>
143                 </executions>
144             </plugin>
145             <plugin>
146                 <groupId>org.jacoco</groupId>
147                 <artifactId>jacoco-maven-plugin</artifactId>
148                 <executions>
149                   <execution>
150                     <id>prepare-agent</id>
151                     <goals>
152                         <goal>prepare-agent</goal>
153                     </goals>
154                   </execution>
155                   <execution>
156                      <id>report</id>
157                      <goals>
158                        <goal>report</goal>
159                      </goals>
160                      <configuration>
161                         <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile>
162                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
163                      </configuration>
164                   </execution>
165                </executions>
166             </plugin>
167         </plugins>
168     </build>
169 </project>