blob: 2b3dc111939f995af3b0439e58da24fd6d6b3d52 [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>
Patrick Brady07567592017-12-13 11:09:30 -080030 <groupId>org.onap.appc</groupId>
Skip Wonnellabe94202017-08-29 22:39:17 -050031 <artifactId>appc</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080032 <version>1.3.0-SNAPSHOT</version>
Skip Wonnellabe94202017-08-29 22:39:17 -050033 </parent>
34
35 <artifactId>appc-java-client</artifactId>
Patrick Brady07567592017-12-13 11:09:30 -080036 <groupId>org.onap.appc.client</groupId>
Jessica Wagantall65367992017-11-16 17:22:13 -080037 <version>1.3.0-SNAPSHOT</version>
Skip Wonnellabe94202017-08-29 22:39:17 -050038
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>
Skip Wonnellabe94202017-08-29 22:39:17 -050059 <java.version>1.8</java.version>
60 <junit.version>4.12</junit.version>
61 <maven.compiler.plugin.version>3.6.0</maven.compiler.plugin.version>
62 <maven.core.version>3.3.9</maven.core.version>
63 <maven.install.plugin.version>2.5.2</maven.install.plugin.version>
64 <maven.javadoc.plugin.version>2.10.4</maven.javadoc.plugin.version>
65 <maven.plugin.annotations.version>3.5</maven.plugin.annotations.version>
66 <maven.plugin.api.version>3.3.9</maven.plugin.api.version>
67 <maven.plugin.plugin.version>3.3</maven.plugin.plugin.version>
68 <maven.release.plugin.version>2.5.2</maven.release.plugin.version>
69 <maven.scm.provers.jgit.version>1.9.5</maven.scm.provers.jgit.version>
70 <maven.surefire.plugin.version>2.10</maven.surefire.plugin.version>
71 <mockito-core.version>1.9.5</mockito-core.version>
72 <odl.mdsal.yang.binding.version>0.9.1-Boron-SR1</odl.mdsal.yang.binding.version>
73 <odl.sal.binding.version>1.4.1-Boron-SR1</odl.sal.binding.version>
74 <odl.version>0.5.1-Boron-SR1</odl.version>
75 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
76 <project.scm.id>git-server</project.scm.id>
77 <sal.core.api.version>1.4.2-Boron-SR2</sal.core.api.version>
78 <sdnctl.dblib.version>1.1.0</sdnctl.dblib.version>
79 <sdnctl.sli.version>1.1.0</sdnctl.sli.version>
80 <yang.maven.plugin.version>1.0.1-Boron-SR1</yang.maven.plugin.version>
81 <yang.parser.impl.version>1.0.3-Boron-SR3</yang.parser.impl.version>
82 </properties>
83
84 <build>
85 <pluginManagement>
86 <plugins>
87 <plugin>
88 <groupId>org.opendaylight.mdsal</groupId>
89 <artifactId>yang-binding</artifactId>
90 <version>${odl.mdsal.yang.binding.version}</version>
91 </plugin>
92 <plugin>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>maven-bundle-plugin</artifactId>
95 <version>${bundle.plugin.version}</version>
96 </plugin>
97
98 <plugin>
99 <groupId>org.codehaus.mojo</groupId>
100 <artifactId>build-helper-maven-plugin</artifactId>
101 <version>${build-helper-maven-plugin-version}</version>
102 </plugin>
103 <plugin>
104 <groupId>org.opendaylight.yangtools</groupId>
105 <artifactId>yang-maven-plugin</artifactId>
106 <version>${yang.maven.plugin.version}</version>
107 </plugin>
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-compiler-plugin</artifactId>
111 <version>${maven.compiler.plugin.version}</version>
112 <configuration>
113 <source>${java.version}</source>
114 <target>${java.version}</target>
115 </configuration>
116 </plugin>
117
118 <plugin>
119 <artifactId>maven-assembly-plugin</artifactId>
120 <configuration>
121 <descriptors>
122 <descriptor>assembly.xml</descriptor>
123 </descriptors>
124 </configuration>
125 </plugin>
126
127 <plugin>
128 <artifactId>maven-release-plugin</artifactId>
129 <version>${maven.release.plugin.version}</version>
130 <configuration>
131 <goals>-s ${mvn.settings} deploy</goals>
132 <providerImplementations>
133 <git>jgit</git>
134 </providerImplementations>
135 </configuration>
136 <dependencies>
137 <dependency>
138 <groupId>org.apache.maven.scm</groupId>
139 <artifactId>maven-scm-provider-jgit</artifactId>
140 <version>${maven.scm.provers.jgit.version></version>
141 </dependency>
142 </dependencies>
143 </plugin>
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-javadoc-plugin</artifactId>
147 <version>${maven.javadoc.plugin.version}</version>
148 <executions>
149 <execution>
150 <id>attach-javadocs</id>
151 <phase>install</phase>
152 <goals>
153 <goal>aggregate-jar</goal>
154 </goals>
155 </execution>
156 </executions>
157 </plugin>
158 </plugins>
159 </pluginManagement>
160
161 <plugins>
162 <plugin>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-javadoc-plugin</artifactId>
165 <executions>
166 <execution>
167 <id>attach-javadocs</id>
168 <phase>install</phase>
169 <goals>
170 <goal>aggregate-jar</goal>
171 </goals>
172 </execution>
173 </executions>
174 </plugin>
175
176 </plugins>
177 </build>
178
179 <dependencyManagement>
180 <dependencies>
181 <dependency>
182 <groupId>junit</groupId>
183 <artifactId>junit</artifactId>
184 <version>${junit.version}</version>
185 </dependency>
186 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700187 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnellabe94202017-08-29 22:39:17 -0500188 <artifactId>sli-provider</artifactId>
189 <version>${sdnctl.sli.version}</version>
190 </dependency>
191 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700192 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnellabe94202017-08-29 22:39:17 -0500193 <artifactId>dblib-provider</artifactId>
194 <version>${sdnctl.dblib.version}</version>
195 </dependency>
196 <dependency>
197 <groupId>org.opendaylight.controller</groupId>
198 <artifactId>sal-binding-api</artifactId>
199 <version>${odl.sal.binding.version}</version>
200 </dependency>
201 <dependency>
202 <groupId>com.fasterxml.jackson.core</groupId>
203 <artifactId>jackson-databind</artifactId>
204 <version>${jackson.version}</version>
205 </dependency>
206 <dependency>
207 <groupId>com.att.nsa</groupId>
208 <artifactId>cambriaClient</artifactId>
209 <version>${cambria.client.version}</version>
210 </dependency>
211 <dependency>
212 <groupId>com.att.eelf</groupId>
213 <artifactId>eelf-core</artifactId>
214 <version>${eelf.core.version}</version>
215 </dependency>
216 <dependency>
217 <groupId>org.mockito</groupId>
218 <artifactId>mockito-core</artifactId>
219 <version>${mockito-core.version}</version>
220 </dependency>
mojahidi5c0ab1d2017-09-26 17:39:23 +0530221 <dependency>
222 <groupId>org.mockito</groupId>
223 <artifactId>mockito-core</artifactId>
224 <scope>test</scope>
225 </dependency>
226
Skip Wonnellabe94202017-08-29 22:39:17 -0500227 </dependencies>
228 </dependencyManagement>
229
230</project>