blob: da1b6095c3dddf91ed90d4ca421b91cda941adb6 [file] [log] [blame]
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Ganesh Chandrasekaranf8ebec62018-07-18 15:27:52 +09004 ONAP : CCSDK
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +09005 ================================================================================
Ganesh Chandrasekaranf8ebec62018-07-18 15:27:52 +09006 Copyright (C) 2018 Samsung Electronics. All rights reserved.
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +09007 ================================================================================
Ganesh Chandrasekaranf8ebec62018-07-18 15:27:52 +09008
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +09009 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
Ganesh Chandrasekaranf8ebec62018-07-18 15:27:52 +090022
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +090023 ============LICENSE_END=========================================================
24 -->
Dan Timoneya612cdd2020-03-05 11:51:01 -050025<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">
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +090026 <modelVersion>4.0.0</modelVersion>
Dan Timoneya612cdd2020-03-05 11:51:01 -050027
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +090028 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>odlparent-lite</artifactId>
Dan Timoneya612cdd2020-03-05 11:51:01 -050031 <version>2.0.0-SNAPSHOT</version>
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +090032 <relativePath/>
33 </parent>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +090034
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +090035 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
36 <artifactId>saltstack-adaptor</artifactId>
Dan Timoneya612cdd2020-03-05 11:51:01 -050037 <version>1.0.0-SNAPSHOT</version>
38 <packaging>pom</packaging>
39
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +090040 <name>ccsdk-sli-adaptors :: saltstack-adapter</name>
41 <description>Abstractions to interact with Saltstack server via REST
42 </description>
Dan Timoneya612cdd2020-03-05 11:51:01 -050043
44 <modules>
45 <module>saltstack-adapter-provider</module>
46 <module>saltstack-adapter-installer</module>
47 </modules>
48
49 <dependencyManagement>
50 <dependencies>
51
52 <dependency>
53 <groupId>org.onap.appc</groupId>
54 <artifactId>saltstack-adapter-features</artifactId>
55 <version>${project.version}</version>
56 <type>xml</type>
57 <classifier>features</classifier>
58 </dependency>
59
60 <dependency>
61 <groupId>org.onap.appc</groupId>
62 <artifactId>saltstack-adapter-provider</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65
66 <dependency>
67 <groupId>junit</groupId>
68 <artifactId>junit</artifactId>
69 <version>4.11</version>
70 <scope>test</scope>
71 </dependency>
72
73
74 </dependencies>
75
76
77 </dependencyManagement>
78
79 <pluginRepositories>
80 <!-- Black Duck plugin dependencies -->
81 <pluginRepository>
82 <id>JCenter</id>
83 <name>JCenter Repository</name>
84 <url>http://jcenter.bintray.com</url>
85 </pluginRepository>
86
87 </pluginRepositories>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +090088
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +090089 <build>
90 <plugins>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +090091
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +090092 <!-- Black duck plugin Not required for regular builds
93 <plugin> <groupId>com.blackducksoftware.integration</groupId> <artifactId>hub-maven-plugin</artifactId>
94 <version>1.4.0</version> <inherited>false</inherited> <configuration> <hubProjectName>${project.name}</hubProjectName>
95 <outputDirectory>${project.basedir}</outputDirectory> <deployHubBdio>false</deployHubBdio>
96 </configuration> <extensions>true</extensions>
97 <executions>
98 <execution>
99 <id>create-bdio-file</id>
100 <phase>package</phase>
101 <goals>
102 <goal>createHubOutput</goal>
103 </goals>
104 </execution>
105 </executions>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +0900106
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +0900107 </plugin>
108 -->
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +0900109
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +0900110 </plugins>
111 </build>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +0900112
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +0900113 <reporting>
114 <plugins>
115 <plugin>
116 <artifactId>maven-javadoc-plugin</artifactId>
117 <configuration>
118 <additionalDependencies>
119 <additionalDependency>
120 <groupId>org.slf4j</groupId>
121 <artifactId>slf4j-api</artifactId>
122 <version>${slf4j.version}</version>
123 </additionalDependency>
124 <additionalDependency>
125 <groupId>org.antlr</groupId>
126 <artifactId>antlr4</artifactId>
127 <version>${antlr.version}</version>
128 </additionalDependency>
129 <additionalDependency>
130 <groupId>org.antlr</groupId>
131 <artifactId>antlr4-runtime</artifactId>
132 <version>4.3</version>
133 </additionalDependency>
134 </additionalDependencies>
135 </configuration>
136 <reportSets>
137 <reportSet>
138 <reports>
139 <report>javadoc-no-fork</report>
140 <report>test-javadoc-no-fork</report>
141 </reports>
142 </reportSet>
143 <reportSet>
144 <id>aggregate</id>
145 <reports>
146 <report>aggregate</report>
147 <report>test-aggregate</report>
148 </reports>
149 </reportSet>
150 </reportSets>
151 </plugin>
152 <plugin>
153 <groupId>org.apache.maven.plugins</groupId>
154 <artifactId>maven-jxr-plugin</artifactId>
155 <version>2.3</version>
156 <reportSets>
157 <reportSet>
158 <id>aggregate</id>
159 <reports>
160 <report>aggregate</report>
161 <report>test-aggregate</report>
162 </reports>
163 </reportSet>
164 </reportSets>
165 </plugin>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +0900166
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +0900167 <plugin>
168 <artifactId>maven-surefire-plugin</artifactId>
169 </plugin>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +0900170
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +0900171 <plugin>
172 <groupId>org.apache.maven.plugins</groupId>
173 <artifactId>maven-changelog-plugin</artifactId>
174 <version>2.3</version>
175 <reportSets>
176 <reportSet>
177 <id>dual-report</id>
178 <configuration>
179 <type>range</type>
180 <range>30</range>
181 </configuration>
182 <reports>
183 <report>changelog</report>
184 <report>file-activity</report>
185 </reports>
186 </reportSet>
187 </reportSets>
188 </plugin>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +0900189
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +0900190 <plugin>
191 <groupId>org.codehaus.mojo</groupId>
192 <artifactId>taglist-maven-plugin</artifactId>
193 <version>2.4</version>
194 </plugin>
195 </plugins>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +0900196
Ganesh Chandrasekaran021cae42018-07-23 14:27:22 +0900197 </reporting>
Ganesh Chandrasekaran8fe91222018-06-28 17:39:09 +0900198</project>