upgrade databind artifact
[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-common-util</artifactId>
74         </dependency>
75         <dependency>
76             <artifactId>sal-test-model</artifactId>
77             <groupId>org.opendaylight.controller</groupId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.onap.appc</groupId>
82             <artifactId>appc-dg-dependency-model</artifactId>
83             <version>${project.version}</version>
84         </dependency>
85         <dependency>
86           <groupId>com.fasterxml.jackson.core</groupId>
87           <artifactId>jackson-core</artifactId>
88         </dependency>
89         <dependency>
90           <groupId>com.fasterxml.jackson.core</groupId>
91           <artifactId>jackson-databind</artifactId>
92            <version>2.8.11.3</version>
93         </dependency>
94         <dependency>
95           <groupId>com.fasterxml.jackson.core</groupId>
96           <artifactId>jackson-annotations</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.onap.ccsdk.sli.core</groupId>
100             <artifactId>sli-common</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.onap.ccsdk.sli.core</groupId>
104             <artifactId>sli-provider</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.onap.appc</groupId>
108             <artifactId>appc-dg-domain-model-lib</artifactId>
109             <version>${project.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>org.onap.appc</groupId>
113             <artifactId>domain-model-lib</artifactId>
114             <version>${project.version}</version>
115         </dependency>
116         <dependency>
117             <groupId>org.apache.velocity</groupId>
118             <artifactId>velocity</artifactId>
119             <version>1.7</version>
120             <exclusions>
121                  <exclusion>
122                       <artifactId>commons-collections</artifactId>
123                       <groupId>commons-collections</groupId>
124                  </exclusion>
125             </exclusions>
126         </dependency>
127         <dependency>
128             <groupId>commons-collections</groupId>
129             <artifactId>commons-collections</artifactId>
130             <version>3.2.2</version>
131         </dependency>
132          <dependency>
133             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
134             <artifactId>sql-resource-provider</artifactId>
135             <version>${ccsdk.sli.adaptors.version}</version>
136         </dependency>
137         <dependency>
138              <groupId>commons-io</groupId>
139              <artifactId>commons-io</artifactId>
140         </dependency>
141         <dependency>
142         <groupId>javax.validation</groupId>
143         <artifactId>validation-api</artifactId>
144         <version>1.1.0.Final</version>
145     </dependency>
146
147         <dependency>
148             <groupId>org.onap.appc</groupId>
149             <artifactId>appc-sequence-generator-model</artifactId>
150             <version>${project.version}</version>
151         </dependency>
152     </dependencies>
153
154 </project>