c460a36a29afa75abe26dbb8bca6dd586deaa57c
[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-2019 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  ============LICENSE_END=========================================================
23 -->
24 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
25          xmlns="http://maven.apache.org/POM/4.0.0"
26          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
27     <modelVersion>4.0.0</modelVersion>
28         <parent>
29                 <groupId>org.onap.appc.parent</groupId>
30                 <artifactId>binding-parent</artifactId>
31                 <version>1.5.0-SNAPSHOT</version>
32                 <relativePath />
33         </parent>
34         <groupId>org.onap.appc</groupId>
35     <artifactId>appc-sequence-generator-bundle</artifactId>
36     <version>1.5.0-SNAPSHOT</version>
37     <name>appc-sequence-generator-bundle</name>
38     <packaging>bundle</packaging>
39
40     <build>
41         <plugins>
42             <plugin>
43                 <groupId>org.apache.felix</groupId>
44                 <artifactId>maven-bundle-plugin</artifactId>
45                 <version>${bundle.plugin.version}</version>
46                 <extensions>true</extensions>
47                 <configuration>
48                     <instructions>
49                         <Bundle-SymbolicName>appc-sequence-generator-bundle</Bundle-SymbolicName>
50                         <!--                        <Bundle-Activator>org.onap.appc.seqgen.SequenceGeneratorActivator</Bundle-Activator>-->
51                         <Export-Package>org.onap.appc.seqgen.*</Export-Package>
52                         <Import-Package>org.onap.appc.domainmodel.lcm,*;resolution:=optional</Import-Package>
53                         <DynamicImport-Package>*</DynamicImport-Package>
54                         <Embed-Transitive>true</Embed-Transitive>
55                     </instructions>
56                 </configuration>
57             </plugin>
58         </plugins>
59     </build>
60
61     <dependencies>
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.controller</groupId>
69             <artifactId>config-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>sal-binding-config</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>sal-binding-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>sal-common-util</artifactId>
82         </dependency>
83         <dependency>
84             <artifactId>sal-test-model</artifactId>
85             <groupId>org.opendaylight.controller</groupId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>sal-binding-broker-impl</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-binding-broker-impl</artifactId>
96             <classifier>tests</classifier>
97             <version>${odl.mdsal.version}</version>
98             <type>test-jar</type>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.onap.appc</groupId>
103             <artifactId>appc-dg-dependency-model</artifactId>
104             <version>${project.version}</version>
105         </dependency>
106         <dependency>
107           <groupId>com.fasterxml.jackson.core</groupId>
108           <artifactId>jackson-core</artifactId>
109         </dependency>
110         <dependency>
111           <groupId>com.fasterxml.jackson.core</groupId>
112           <artifactId>jackson-databind</artifactId>
113         </dependency>
114         <dependency>
115           <groupId>com.fasterxml.jackson.core</groupId>
116           <artifactId>jackson-annotations</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.onap.ccsdk.sli.core</groupId>
120             <artifactId>sli-common</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.onap.ccsdk.sli.core</groupId>
124             <artifactId>sli-provider</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.onap.appc</groupId>
128             <artifactId>appc-dg-domain-model-lib</artifactId>
129             <version>${project.version}</version>
130         </dependency>
131         <dependency>
132             <groupId>org.onap.appc</groupId>
133             <artifactId>domain-model-lib</artifactId>
134             <version>${project.version}</version>
135         </dependency>
136         <dependency>
137             <groupId>org.apache.velocity</groupId>
138             <artifactId>velocity</artifactId>
139             <version>1.7</version>
140             <exclusions>
141                  <exclusion>
142                       <artifactId>commons-collections</artifactId>
143                       <groupId>commons-collections</groupId>
144                  </exclusion>
145             </exclusions>
146         </dependency>
147         <dependency>
148             <groupId>commons-collections</groupId>
149             <artifactId>commons-collections</artifactId>
150             <version>3.2.2</version>
151         </dependency>
152          <dependency>
153             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
154             <artifactId>sql-resource-provider</artifactId>
155             <version>${ccsdk.sli.adaptors.version}</version>
156         </dependency>
157         <dependency>
158              <groupId>commons-io</groupId>
159              <artifactId>commons-io</artifactId>
160         </dependency>
161         <dependency>
162         <groupId>javax.validation</groupId>
163         <artifactId>validation-api</artifactId>
164         <version>1.1.0.Final</version>
165     </dependency>
166
167         <dependency>
168             <groupId>org.onap.appc</groupId>
169             <artifactId>appc-sequence-generator-model</artifactId>
170             <version>${project.version}</version>
171         </dependency>
172     </dependencies>
173
174 </project>