Increment version for new branch
[appc.git] / appc-sequence-generator / appc-sequence-generator-bundle / pom.xml
1 <?xml version="1.0"?>
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 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>
30         <groupId>org.onap.appc</groupId>
31         <artifactId>appc-sequence-generator</artifactId>
32         <version>1.4.0-SNAPSHOT</version>
33     </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>
48                         <!--                        <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>
51                         <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>
59                 <version>${odl.yangtools.version}</version>
60                 <executions>
61                     <execution>
62                         <id>config</id>
63                         <goals>
64                             <goal>generate-sources</goal>
65                         </goals>
66                         <configuration>
67                             <codeGenerators>
68                                 <generator>
69                                     <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
70                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
71                                     <additionalConfiguration>
72                                         <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
73                                     </additionalConfiguration>
74                                 </generator>
75                                 <generator>
76                                     <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
77                                     <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>
169             <groupId>org.onap.appc</groupId>
170             <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>
186             <groupId>org.onap.ccsdk.sli.core</groupId>
187             <artifactId>sli-common</artifactId>
188         </dependency>
189         <dependency>
190             <groupId>org.onap.ccsdk.sli.core</groupId>
191             <artifactId>sli-provider</artifactId>
192         </dependency>
193         <dependency>
194             <groupId>org.onap.appc</groupId>
195             <artifactId>appc-dg-domain-model-lib</artifactId>
196             <version>${project.version}</version>
197         </dependency>
198         <dependency>
199             <groupId>org.onap.appc</groupId>
200             <artifactId>domain-model-lib</artifactId>
201             <version>${project.version}</version>
202         </dependency>
203
204         <dependency>
205             <groupId>org.onap.appc</groupId>
206             <artifactId>appc-sequence-generator-model</artifactId>
207             <version>${project.version}</version>
208         </dependency>
209     </dependencies>
210
211 </project>