blob: 44331d3bb095f2ab701d2bc964d1eba34c6afdf4 [file] [log] [blame]
Skip Wonnellab6c2c02017-08-14 17:47:10 -05001<?xml version="1.0" encoding="UTF-8"?>
mojahidi3df31822017-08-29 18:20:26 +05302<!--
3============LICENSE_START=======================================================
4ONAP : APPC
5================================================================================
Patrick Brady5b817642018-03-22 15:12:48 -07006Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
mojahidi3df31822017-08-29 18:20:26 +05307================================================================================
8Copyright (C) 2017 Amdocs
9=============================================================================
10Licensed under the Apache License, Version 2.0 (the "License");
11you may not use this file except in compliance with the License.
12You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16Unless required by applicable law or agreed to in writing, software
17distributed under the License is distributed on an "AS IS" BASIS,
18WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19See the License for the specific language governing permissions and
20limitations under the License.
21
mojahidi3df31822017-08-29 18:20:26 +053022============LICENSE_END=========================================================
23-->
Skip Wonnellab6c2c02017-08-14 17:47:10 -050024<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <artifactId>appc-artifact-handler</artifactId>
Patrick Brady07567592017-12-13 11:09:30 -080029 <groupId>org.onap.appc</groupId>
Patrick Brady84d0a252018-05-22 10:42:55 -070030 <version>1.4.0-SNAPSHOT</version>
Skip Wonnellab6c2c02017-08-14 17:47:10 -050031 </parent>
32 <artifactId>appc-artifact-handler-provider</artifactId>
33 <packaging>bundle</packaging>
34
35 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>maven-bundle-plugin</artifactId>
40 <extensions>true</extensions>
41 <configuration>
42 <instructions>
Patrick Brady07567592017-12-13 11:09:30 -080043 <Bundle-SymbolicName>org.onap.appc.artifact.handler</Bundle-SymbolicName>
44 <Bundle-Activator>org.onap.appc.artifact.handler.SdcArtifactHandlerActivator</Bundle-Activator>
45 <Export-Package>org.onap.appc.artifact.handler,org.opendaylight.controller.config.yang.config.artifact-handler_provider.impl</Export-Package>
Patrick Brady5b817642018-03-22 15:12:48 -070046 <Import-Package>!com.google,!org.apache.commons.configuration,*;resolution:=optional</Import-Package>
Patrick Brady3ffa74f2018-05-14 14:01:46 -070047 <Embed-Dependency>commons-configuration,guava,jackson-databind,jackson-annotations,jackson-core,jackson-dataformat-yaml</Embed-Dependency>
Skip Wonnellab6c2c02017-08-14 17:47:10 -050048 </instructions>
Skip Wonnellab6c2c02017-08-14 17:47:10 -050049 </configuration>
50 </plugin>
Patrick Brady76706002017-09-04 21:37:25 -070051 <plugin>
52 <groupId>org.opendaylight.yangtools</groupId>
53 <artifactId>yang-maven-plugin</artifactId>
54 <version>${odl.yangtools.version}</version>
55 <executions>
56 <execution>
57 <id>config</id>
58 <goals>
59 <goal>generate-sources</goal>
60 </goals>
61 <configuration>
62 <codeGenerators>
63 <generator>
64 <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
65 <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
66 <additionalConfiguration>
67 <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
68 </additionalConfiguration>
69 </generator>
70 <generator>
71 <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
72 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
73 </generator>
74 </codeGenerators>
75 <inspectDependencies>true</inspectDependencies>
76 </configuration>
77 </execution>
78 </executions>
79 <dependencies>
80 <dependency>
81 <groupId>org.opendaylight.mdsal</groupId>
82 <artifactId>maven-sal-api-gen-plugin</artifactId>
83 <version>${odl.sal.api.gen.plugin.version}</version>
84 <type>jar</type>
85 </dependency>
86 <dependency>
87 <groupId>org.opendaylight.controller</groupId>
88 <artifactId>yang-jmx-generator-plugin</artifactId>
89 <version>${odl.yang.jmx.generator.version}</version>
90 </dependency>
91 </dependencies>
92 </plugin>
Skip Wonnellab6c2c02017-08-14 17:47:10 -050093 <plugin>
94 <groupId>org.codehaus.mojo</groupId>
95 <artifactId>build-helper-maven-plugin</artifactId>
96 <executions>
97 <execution>
98 <id>attach-artifacts</id>
99 <goals>
100 <goal>attach-artifact</goal>
101 </goals>
102 <phase>package</phase>
103 <configuration>
104 <artifacts>
105 <artifact>
Patrick Bradyb7d8b972017-10-26 09:12:23 -0700106 <file>${project.build.directory}/classes/initial/appc-artifact-handler-provider.xml</file>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500107 <type>xml</type>
108 <classifier>config</classifier>
109 </artifact>
110 </artifacts>
111 </configuration>
112 </execution>
113 </executions>
114 </plugin>
115 </plugins>
116 </build>
117
118 <dependencies>
119 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800120 <groupId>org.onap.appc</groupId>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500121 <artifactId>appc-artifact-handler-model</artifactId>
Patrick Brady226725a2018-05-11 09:06:09 -0700122 <version>${project.version}</version>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500123 </dependency>
124 <dependency>
125 <groupId>org.opendaylight.controller</groupId>
126 <artifactId>config-api</artifactId>
127 </dependency>
128 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800129 <groupId>org.onap.appc</groupId>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500130 <artifactId>appc-yang-generator</artifactId>
131 <version>${project.version}</version>
132 </dependency>
133
134 <dependency>
135 <groupId>org.opendaylight.controller</groupId>
136 <artifactId>sal-binding-config</artifactId>
137 </dependency>
138 <dependency>
139 <groupId>org.opendaylight.controller</groupId>
140 <artifactId>sal-binding-api</artifactId>
141 </dependency>
142 <dependency>
Patrick Brady226725a2018-05-11 09:06:09 -0700143 <groupId>org.opendaylight.mdsal</groupId>
144 <artifactId>yang-binding</artifactId>
145 </dependency>
146 <dependency>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500147 <groupId>org.opendaylight.controller</groupId>
148 <artifactId>sal-common-util</artifactId>
149 </dependency>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500150 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700151 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500152 <artifactId>sli-common</artifactId>
153 </dependency>
154 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700155 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500156 <artifactId>sli-provider</artifactId>
157 </dependency>
158 <dependency>
Dilip kumar Pampana819f39b2018-01-05 11:47:22 -0500159 <groupId>commons-configuration</groupId>
160 <artifactId>commons-configuration</artifactId>
161 <version>1.10</version>
162 </dependency>
163 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800164 <groupId>org.onap.appc</groupId>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500165 <artifactId>appc-config-params-provider</artifactId>
166 <version>${project.version}</version>
167 </dependency>
168 <dependency>
169 <artifactId>sal-test-model</artifactId>
170 <groupId>org.opendaylight.controller</groupId>
171 <scope>test</scope>
172 </dependency>
173 <dependency>
174 <artifactId>sal-rest-connector</artifactId>
175 <groupId>org.opendaylight.netconf</groupId>
176 <scope>test</scope>
177 </dependency>
178 <dependency>
179 <groupId>org.opendaylight.controller</groupId>
180 <artifactId>sal-binding-broker-impl</artifactId>
181 <scope>test</scope>
182 </dependency>
183 <dependency>
184 <groupId>org.opendaylight.controller</groupId>
185 <artifactId>sal-binding-broker-impl</artifactId>
186 <version>${odl.mdsal.version}</version>
187 <classifier>tests</classifier>
188 <type>test-jar</type>
189 <scope>test</scope>
190 </dependency>
191 <dependency>
192 <groupId>com.att.eelf</groupId>
193 <artifactId>eelf-core</artifactId>
194 </dependency>
195 <dependency>
196 <groupId>junit</groupId>
197 <artifactId>junit</artifactId>
198 <scope>test</scope>
199 </dependency>
200 <dependency>
201 <groupId>org.apache.commons</groupId>
202 <artifactId>commons-lang3</artifactId>
203 </dependency>
204 <dependency>
205 <groupId>org.json</groupId>
206 <artifactId>json</artifactId>
207 </dependency>
208 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700209 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500210 <artifactId>sql-resource-provider</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -0700211 <version>${ccsdk.sli.adaptors.version}</version>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500212 <scope>compile</scope>
213 </dependency>
Ramya Balajic0eaebb2017-09-11 15:50:25 -0400214 <dependency>
215 <groupId>org.powermock</groupId>
216 <artifactId>powermock-api-mockito</artifactId>
217 <scope>test</scope>
218 </dependency>
219 <dependency>
220 <groupId>org.mockito</groupId>
221 <artifactId>mockito-core</artifactId>
222 <scope>test</scope>
223 </dependency>
Skip Wonnellab6c2c02017-08-14 17:47:10 -0500224 </dependencies>
225</project>