blob: 3c2a5fcd2b4ad3257a3303397807edaf478c5a8d [file] [log] [blame]
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +05301<?xml version="1.0"?>
Skip Wonnell8e5e3172018-01-11 14:10:33 -06002<!--
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-->
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053025<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
26 xmlns="http://maven.apache.org/POM/4.0.0"
27 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
28 <modelVersion>4.0.0</modelVersion>
29 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080030 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053031 <artifactId>appc-sequence-generator</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080032 <version>1.3.0-SNAPSHOT</version>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053033 </parent>
34 <artifactId>appc-sequence-generator-bundle</artifactId>
35 <name>appc-sequence-generator-bundle</name>
36 <packaging>bundle</packaging>
37
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
43 <version>${bundle.plugin.version}</version>
44 <extensions>true</extensions>
45 <configuration>
46 <instructions>
47 <Bundle-SymbolicName>appc-sequence-generator-bundle</Bundle-SymbolicName>
Patrick Brady07567592017-12-13 11:09:30 -080048 <!-- <Bundle-Activator>org.onap.appc.seqgen.SequenceGeneratorActivator</Bundle-Activator>-->
49 <Export-Package>org.onap.appc.seqgen.*</Export-Package>
50 <Import-Package>org.onap.appc.domainmodel.lcm,*;resolution:=optional</Import-Package>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053051 <DynamicImport-Package>*</DynamicImport-Package>
52 <Embed-Transitive>true</Embed-Transitive>
53 </instructions>
54 </configuration>
55 </plugin>
56 <plugin>
57 <groupId>org.opendaylight.yangtools</groupId>
58 <artifactId>yang-maven-plugin</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070059 <version>${odl.yangtools.version}</version>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053060 <executions>
61 <execution>
62 <id>config</id>
63 <goals>
64 <goal>generate-sources</goal>
65 </goals>
66 <configuration>
67 <codeGenerators>
68 <generator>
Patrick Brady76706002017-09-04 21:37:25 -070069 <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053070 <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
71 <additionalConfiguration>
Patrick Brady76706002017-09-04 21:37:25 -070072 <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053073 </additionalConfiguration>
74 </generator>
75 <generator>
Patrick Brady76706002017-09-04 21:37:25 -070076 <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053077 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
78 </generator>
79 </codeGenerators>
80 <inspectDependencies>true</inspectDependencies>
81 </configuration>
82 </execution>
83 </executions>
84 <dependencies>
85 <dependency>
86 <groupId>org.opendaylight.mdsal</groupId>
87 <artifactId>maven-sal-api-gen-plugin</artifactId>
88 <version>${odl.sal.api.gen.plugin.version}</version>
89 <type>jar</type>
90 </dependency>
91 <dependency>
92 <groupId>org.opendaylight.controller</groupId>
93 <artifactId>yang-jmx-generator-plugin</artifactId>
94 <version>${odl.yang.jmx.generator.version}</version>
95 </dependency>
96 </dependencies>
97 </plugin>
98 <plugin>
99 <groupId>org.codehaus.mojo</groupId>
100 <artifactId>build-helper-maven-plugin</artifactId>
101 <executions>
102 <execution>
103 <id>attach-artifacts</id>
104 <goals>
105 <goal>attach-artifact</goal>
106 </goals>
107 <phase>package</phase>
108 <configuration>
109 <artifacts>
110 <artifact>
111 <file>${project.build.directory}/classes/initial/appc-sequence-generator.xml</file>
112 <type>xml</type>
113 <classifier>config</classifier>
114 </artifact>
115 </artifacts>
116 </configuration>
117 </execution>
118 </executions>
119 </plugin>
120 </plugins>
121 </build>
122
123 <dependencies>
124 <dependency>
125 <groupId>junit</groupId>
126 <artifactId>junit</artifactId>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.opendaylight.controller</groupId>
131 <artifactId>config-api</artifactId>
132 </dependency>
133 <dependency>
134 <groupId>org.opendaylight.controller</groupId>
135 <artifactId>sal-binding-config</artifactId>
136 </dependency>
137 <dependency>
138 <groupId>org.opendaylight.controller</groupId>
139 <artifactId>sal-binding-api</artifactId>
140 </dependency>
141 <dependency>
142 <groupId>org.opendaylight.controller</groupId>
143 <artifactId>sal-common-util</artifactId>
144 </dependency>
145 <dependency>
146 <artifactId>sal-test-model</artifactId>
147 <groupId>org.opendaylight.controller</groupId>
148 <scope>test</scope>
149 </dependency>
150 <dependency>
151 <artifactId>sal-rest-connector</artifactId>
152 <groupId>org.opendaylight.netconf</groupId>
153 <scope>test</scope>
154 </dependency>
155 <dependency>
156 <groupId>org.opendaylight.controller</groupId>
157 <artifactId>sal-binding-broker-impl</artifactId>
158 <scope>test</scope>
159 </dependency>
160 <dependency>
161 <groupId>org.opendaylight.controller</groupId>
162 <artifactId>sal-binding-broker-impl</artifactId>
163 <classifier>tests</classifier>
164 <version>${odl.mdsal.version}</version>
165 <type>test-jar</type>
166 <scope>test</scope>
167 </dependency>
168 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800169 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530170 <artifactId>appc-dg-dependency-model</artifactId>
171 <version>${project.version}</version>
172 </dependency>
173 <dependency>
174 <groupId>com.fasterxml.jackson.core</groupId>
175 <artifactId>jackson-core</artifactId>
176 </dependency>
177 <dependency>
178 <groupId>com.fasterxml.jackson.core</groupId>
179 <artifactId>jackson-databind</artifactId>
180 </dependency>
181 <dependency>
182 <groupId>com.fasterxml.jackson.core</groupId>
183 <artifactId>jackson-annotations</artifactId>
184 </dependency>
185 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700186 <groupId>org.onap.ccsdk.sli.core</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530187 <artifactId>sli-common</artifactId>
188 </dependency>
189 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700190 <groupId>org.onap.ccsdk.sli.core</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530191 <artifactId>sli-provider</artifactId>
192 </dependency>
193 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800194 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530195 <artifactId>appc-dg-domain-model-lib</artifactId>
196 <version>${project.version}</version>
197 </dependency>
198 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800199 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530200 <artifactId>domain-model-lib</artifactId>
201 <version>${project.version}</version>
202 </dependency>
203
204 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800205 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530206 <artifactId>appc-sequence-generator-model</artifactId>
207 <version>${project.version}</version>
208 </dependency>
209 </dependencies>
210
211</project>