blob: 0f5a239d9e623460713e0cc9ae9cf7d5b70aa2eb [file] [log] [blame]
Skip Wonnellabe94202017-08-29 22:39:17 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Taka Choea9b8552018-03-23 15:57:59 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnellabe94202017-08-29 22:39:17 -05007 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
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.
Skip Wonnellabe94202017-08-29 22:39:17 -050021 ============LICENSE_END=========================================================
22 -->
23<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25
26 <modelVersion>4.0.0</modelVersion>
27 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080028 <groupId>org.onap.appc</groupId>
Skip Wonnellabe94202017-08-29 22:39:17 -050029 <artifactId>appc</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080030 <version>1.3.0-SNAPSHOT</version>
Skip Wonnellabe94202017-08-29 22:39:17 -050031 </parent>
32
33 <artifactId>appc-java-client</artifactId>
Patrick Brady07567592017-12-13 11:09:30 -080034 <groupId>org.onap.appc.client</groupId>
Jessica Wagantall65367992017-11-16 17:22:13 -080035 <version>1.3.0-SNAPSHOT</version>
Skip Wonnellabe94202017-08-29 22:39:17 -050036
37 <name>appc-java-client</name>
38 <description>APPC Java Client</description>
39 <packaging>pom</packaging>
40
41 <modules>
42 <module>client-lib</module>
43 <module>client-kit</module>
44 <module>client-simulator</module>
45 <module>code-generator</module>
46 </modules>
47
48 <properties>
49 <licenseDir>${project.parent.basedir}</licenseDir>
50 <build.helper.maven.plugin.version>1.7</build.helper.maven.plugin.version>
51 <build-helper-maven-plugin-version>3.0.0</build-helper-maven-plugin-version>
52 <bundle.plugin.version>2.5.0</bundle.plugin.version>
53 <cambria.client.version>0.0.1</cambria.client.version>
54 <eelf.core.version>1.0.0</eelf.core.version>
Taka Choea9b8552018-03-23 15:57:59 -040055 <eelf.version>1.0.0</eelf.version>
Skip Wonnellabe94202017-08-29 22:39:17 -050056 <freemarker.version>2.3.23</freemarker.version>
Skip Wonnellabe94202017-08-29 22:39:17 -050057 <java.version>1.8</java.version>
58 <junit.version>4.12</junit.version>
59 <maven.compiler.plugin.version>3.6.0</maven.compiler.plugin.version>
60 <maven.core.version>3.3.9</maven.core.version>
61 <maven.install.plugin.version>2.5.2</maven.install.plugin.version>
62 <maven.javadoc.plugin.version>2.10.4</maven.javadoc.plugin.version>
63 <maven.plugin.annotations.version>3.5</maven.plugin.annotations.version>
64 <maven.plugin.api.version>3.3.9</maven.plugin.api.version>
65 <maven.plugin.plugin.version>3.3</maven.plugin.plugin.version>
66 <maven.release.plugin.version>2.5.2</maven.release.plugin.version>
67 <maven.scm.provers.jgit.version>1.9.5</maven.scm.provers.jgit.version>
68 <maven.surefire.plugin.version>2.10</maven.surefire.plugin.version>
69 <mockito-core.version>1.9.5</mockito-core.version>
70 <odl.mdsal.yang.binding.version>0.9.1-Boron-SR1</odl.mdsal.yang.binding.version>
71 <odl.sal.binding.version>1.4.1-Boron-SR1</odl.sal.binding.version>
72 <odl.version>0.5.1-Boron-SR1</odl.version>
73 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
74 <project.scm.id>git-server</project.scm.id>
75 <sal.core.api.version>1.4.2-Boron-SR2</sal.core.api.version>
76 <sdnctl.dblib.version>1.1.0</sdnctl.dblib.version>
77 <sdnctl.sli.version>1.1.0</sdnctl.sli.version>
78 <yang.maven.plugin.version>1.0.1-Boron-SR1</yang.maven.plugin.version>
79 <yang.parser.impl.version>1.0.3-Boron-SR3</yang.parser.impl.version>
80 </properties>
81
82 <build>
83 <pluginManagement>
84 <plugins>
85 <plugin>
86 <groupId>org.opendaylight.mdsal</groupId>
87 <artifactId>yang-binding</artifactId>
88 <version>${odl.mdsal.yang.binding.version}</version>
89 </plugin>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-bundle-plugin</artifactId>
93 <version>${bundle.plugin.version}</version>
94 </plugin>
95
96 <plugin>
97 <groupId>org.codehaus.mojo</groupId>
98 <artifactId>build-helper-maven-plugin</artifactId>
99 <version>${build-helper-maven-plugin-version}</version>
100 </plugin>
101 <plugin>
102 <groupId>org.opendaylight.yangtools</groupId>
103 <artifactId>yang-maven-plugin</artifactId>
104 <version>${yang.maven.plugin.version}</version>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-compiler-plugin</artifactId>
109 <version>${maven.compiler.plugin.version}</version>
110 <configuration>
111 <source>${java.version}</source>
112 <target>${java.version}</target>
113 </configuration>
114 </plugin>
115
116 <plugin>
117 <artifactId>maven-assembly-plugin</artifactId>
118 <configuration>
119 <descriptors>
120 <descriptor>assembly.xml</descriptor>
121 </descriptors>
122 </configuration>
123 </plugin>
124
125 <plugin>
126 <artifactId>maven-release-plugin</artifactId>
127 <version>${maven.release.plugin.version}</version>
128 <configuration>
129 <goals>-s ${mvn.settings} deploy</goals>
130 <providerImplementations>
131 <git>jgit</git>
132 </providerImplementations>
133 </configuration>
134 <dependencies>
135 <dependency>
136 <groupId>org.apache.maven.scm</groupId>
137 <artifactId>maven-scm-provider-jgit</artifactId>
138 <version>${maven.scm.provers.jgit.version></version>
139 </dependency>
140 </dependencies>
141 </plugin>
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-javadoc-plugin</artifactId>
145 <version>${maven.javadoc.plugin.version}</version>
146 <executions>
147 <execution>
148 <id>attach-javadocs</id>
149 <phase>install</phase>
150 <goals>
151 <goal>aggregate-jar</goal>
152 </goals>
153 </execution>
154 </executions>
155 </plugin>
156 </plugins>
157 </pluginManagement>
158
159 <plugins>
160 <plugin>
161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-javadoc-plugin</artifactId>
163 <executions>
164 <execution>
165 <id>attach-javadocs</id>
166 <phase>install</phase>
167 <goals>
168 <goal>aggregate-jar</goal>
169 </goals>
170 </execution>
171 </executions>
172 </plugin>
173
174 </plugins>
175 </build>
176
177 <dependencyManagement>
178 <dependencies>
179 <dependency>
180 <groupId>junit</groupId>
181 <artifactId>junit</artifactId>
182 <version>${junit.version}</version>
183 </dependency>
184 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700185 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnellabe94202017-08-29 22:39:17 -0500186 <artifactId>sli-provider</artifactId>
187 <version>${sdnctl.sli.version}</version>
188 </dependency>
189 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700190 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnellabe94202017-08-29 22:39:17 -0500191 <artifactId>dblib-provider</artifactId>
192 <version>${sdnctl.dblib.version}</version>
193 </dependency>
194 <dependency>
195 <groupId>org.opendaylight.controller</groupId>
196 <artifactId>sal-binding-api</artifactId>
197 <version>${odl.sal.binding.version}</version>
198 </dependency>
199 <dependency>
200 <groupId>com.fasterxml.jackson.core</groupId>
201 <artifactId>jackson-databind</artifactId>
202 <version>${jackson.version}</version>
203 </dependency>
204 <dependency>
205 <groupId>com.att.nsa</groupId>
206 <artifactId>cambriaClient</artifactId>
207 <version>${cambria.client.version}</version>
Taka Cho2a7aaea2018-03-07 19:52:42 -0500208 <exclusions>
209 <exclusion>
210 <artifactId>httpclient</artifactId>
211 <groupId>org.apache.httpcomponents</groupId>
212 </exclusion>
213 </exclusions>
214 </dependency>
215 <dependency>
216 <groupId>org.apache.httpcomponents</groupId>
217 <artifactId>httpclient</artifactId>
218 <version>4.5.3</version>
Skip Wonnellabe94202017-08-29 22:39:17 -0500219 </dependency>
220 <dependency>
221 <groupId>com.att.eelf</groupId>
222 <artifactId>eelf-core</artifactId>
223 <version>${eelf.core.version}</version>
224 </dependency>
225 <dependency>
226 <groupId>org.mockito</groupId>
227 <artifactId>mockito-core</artifactId>
228 <version>${mockito-core.version}</version>
229 </dependency>
mojahidi5c0ab1d2017-09-26 17:39:23 +0530230 <dependency>
231 <groupId>org.mockito</groupId>
232 <artifactId>mockito-core</artifactId>
233 <scope>test</scope>
234 </dependency>
Skip Wonnellabe94202017-08-29 22:39:17 -0500235 </dependencies>
236 </dependencyManagement>
237
238</project>