blob: f624f0a3d0b9bf31f3050530e37f5147ab277ad1 [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 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
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.
21
22 ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 ============LICENSE_END=========================================================
24 -->
25<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27
28 <modelVersion>4.0.0</modelVersion>
29 <parent>
30 <groupId>org.openecomp.appc</groupId>
31 <artifactId>appc</artifactId>
32 <version>1.1.0-SNAPSHOT</version>
33 </parent>
34
35 <artifactId>appc-java-client</artifactId>
36 <groupId>org.openecomp.appc.client</groupId>
37 <version>1.1.0-SNAPSHOT</version>
38
39 <name>appc-java-client</name>
40 <description>APPC Java Client</description>
41 <packaging>pom</packaging>
42
43 <modules>
44 <module>client-lib</module>
45 <module>client-kit</module>
46 <module>client-simulator</module>
47 <module>code-generator</module>
48 </modules>
49
50 <properties>
51 <licenseDir>${project.parent.basedir}</licenseDir>
52 <build.helper.maven.plugin.version>1.7</build.helper.maven.plugin.version>
53 <build-helper-maven-plugin-version>3.0.0</build-helper-maven-plugin-version>
54 <bundle.plugin.version>2.5.0</bundle.plugin.version>
55 <cambria.client.version>0.0.1</cambria.client.version>
56 <eelf.core.version>1.0.0</eelf.core.version>
57 <eelf.version>0.0.4</eelf.version>
58 <freemarker.version>2.3.23</freemarker.version>
59 <jackson.version>2.8.5</jackson.version>
60 <java.version>1.8</java.version>
61 <junit.version>4.12</junit.version>
62 <maven.compiler.plugin.version>3.6.0</maven.compiler.plugin.version>
63 <maven.core.version>3.3.9</maven.core.version>
64 <maven.install.plugin.version>2.5.2</maven.install.plugin.version>
65 <maven.javadoc.plugin.version>2.10.4</maven.javadoc.plugin.version>
66 <maven.plugin.annotations.version>3.5</maven.plugin.annotations.version>
67 <maven.plugin.api.version>3.3.9</maven.plugin.api.version>
68 <maven.plugin.plugin.version>3.3</maven.plugin.plugin.version>
69 <maven.release.plugin.version>2.5.2</maven.release.plugin.version>
70 <maven.scm.provers.jgit.version>1.9.5</maven.scm.provers.jgit.version>
71 <maven.surefire.plugin.version>2.10</maven.surefire.plugin.version>
72 <mockito-core.version>1.9.5</mockito-core.version>
73 <odl.mdsal.yang.binding.version>0.9.1-Boron-SR1</odl.mdsal.yang.binding.version>
74 <odl.sal.binding.version>1.4.1-Boron-SR1</odl.sal.binding.version>
75 <odl.version>0.5.1-Boron-SR1</odl.version>
76 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
77 <project.scm.id>git-server</project.scm.id>
78 <sal.core.api.version>1.4.2-Boron-SR2</sal.core.api.version>
79 <sdnctl.dblib.version>1.1.0</sdnctl.dblib.version>
80 <sdnctl.sli.version>1.1.0</sdnctl.sli.version>
81 <yang.maven.plugin.version>1.0.1-Boron-SR1</yang.maven.plugin.version>
82 <yang.parser.impl.version>1.0.3-Boron-SR3</yang.parser.impl.version>
83 </properties>
84
85 <build>
86 <pluginManagement>
87 <plugins>
88 <plugin>
89 <groupId>org.opendaylight.mdsal</groupId>
90 <artifactId>yang-binding</artifactId>
91 <version>${odl.mdsal.yang.binding.version}</version>
92 </plugin>
93 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-bundle-plugin</artifactId>
96 <version>${bundle.plugin.version}</version>
97 </plugin>
98
99 <plugin>
100 <groupId>org.codehaus.mojo</groupId>
101 <artifactId>build-helper-maven-plugin</artifactId>
102 <version>${build-helper-maven-plugin-version}</version>
103 </plugin>
104 <plugin>
105 <groupId>org.opendaylight.yangtools</groupId>
106 <artifactId>yang-maven-plugin</artifactId>
107 <version>${yang.maven.plugin.version}</version>
108 </plugin>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-compiler-plugin</artifactId>
112 <version>${maven.compiler.plugin.version}</version>
113 <configuration>
114 <source>${java.version}</source>
115 <target>${java.version}</target>
116 </configuration>
117 </plugin>
118
119 <plugin>
120 <artifactId>maven-assembly-plugin</artifactId>
121 <configuration>
122 <descriptors>
123 <descriptor>assembly.xml</descriptor>
124 </descriptors>
125 </configuration>
126 </plugin>
127
128 <plugin>
129 <artifactId>maven-release-plugin</artifactId>
130 <version>${maven.release.plugin.version}</version>
131 <configuration>
132 <goals>-s ${mvn.settings} deploy</goals>
133 <providerImplementations>
134 <git>jgit</git>
135 </providerImplementations>
136 </configuration>
137 <dependencies>
138 <dependency>
139 <groupId>org.apache.maven.scm</groupId>
140 <artifactId>maven-scm-provider-jgit</artifactId>
141 <version>${maven.scm.provers.jgit.version></version>
142 </dependency>
143 </dependencies>
144 </plugin>
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-javadoc-plugin</artifactId>
148 <version>${maven.javadoc.plugin.version}</version>
149 <executions>
150 <execution>
151 <id>attach-javadocs</id>
152 <phase>install</phase>
153 <goals>
154 <goal>aggregate-jar</goal>
155 </goals>
156 </execution>
157 </executions>
158 </plugin>
159 </plugins>
160 </pluginManagement>
161
162 <plugins>
163 <plugin>
164 <groupId>org.apache.maven.plugins</groupId>
165 <artifactId>maven-javadoc-plugin</artifactId>
166 <executions>
167 <execution>
168 <id>attach-javadocs</id>
169 <phase>install</phase>
170 <goals>
171 <goal>aggregate-jar</goal>
172 </goals>
173 </execution>
174 </executions>
175 </plugin>
176
177 </plugins>
178 </build>
179
180 <dependencyManagement>
181 <dependencies>
182 <dependency>
183 <groupId>junit</groupId>
184 <artifactId>junit</artifactId>
185 <version>${junit.version}</version>
186 </dependency>
187 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700188 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnellabe94202017-08-29 22:39:17 -0500189 <artifactId>sli-provider</artifactId>
190 <version>${sdnctl.sli.version}</version>
191 </dependency>
192 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700193 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnellabe94202017-08-29 22:39:17 -0500194 <artifactId>dblib-provider</artifactId>
195 <version>${sdnctl.dblib.version}</version>
196 </dependency>
197 <dependency>
198 <groupId>org.opendaylight.controller</groupId>
199 <artifactId>sal-binding-api</artifactId>
200 <version>${odl.sal.binding.version}</version>
201 </dependency>
202 <dependency>
203 <groupId>com.fasterxml.jackson.core</groupId>
204 <artifactId>jackson-databind</artifactId>
205 <version>${jackson.version}</version>
206 </dependency>
207 <dependency>
208 <groupId>com.att.nsa</groupId>
209 <artifactId>cambriaClient</artifactId>
210 <version>${cambria.client.version}</version>
211 </dependency>
212 <dependency>
213 <groupId>com.att.eelf</groupId>
214 <artifactId>eelf-core</artifactId>
215 <version>${eelf.core.version}</version>
216 </dependency>
217 <dependency>
218 <groupId>org.mockito</groupId>
219 <artifactId>mockito-core</artifactId>
220 <version>${mockito-core.version}</version>
221 </dependency>
222 </dependencies>
223 </dependencyManagement>
224
225</project>