Release appc
[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>2.6.0-SNAPSHOT</version>
32                 <relativePath />
33         </parent>
34         <groupId>org.onap.appc</groupId>
35     <artifactId>appc-sequence-generator-bundle</artifactId>
36     <version>1.6.0</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         </dependency>
93         <dependency>
94           <groupId>com.fasterxml.jackson.core</groupId>
95           <artifactId>jackson-annotations</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.onap.ccsdk.sli.core</groupId>
99             <artifactId>sli-common</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.onap.ccsdk.sli.core</groupId>
103             <artifactId>sli-provider</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.onap.appc</groupId>
107             <artifactId>appc-dg-domain-model-lib</artifactId>
108             <version>${project.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>org.onap.appc</groupId>
112             <artifactId>domain-model-lib</artifactId>
113             <version>${project.version}</version>
114         </dependency>
115         <dependency>
116             <groupId>org.apache.velocity</groupId>
117             <artifactId>velocity</artifactId>
118             <version>1.7</version>
119             <exclusions>
120                  <exclusion>
121                       <artifactId>commons-collections</artifactId>
122                       <groupId>commons-collections</groupId>
123                  </exclusion>
124             </exclusions>
125         </dependency>
126         <dependency>
127             <groupId>commons-collections</groupId>
128             <artifactId>commons-collections</artifactId>
129             <version>3.2.2</version>
130         </dependency>
131          <dependency>
132             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
133             <artifactId>sql-resource-provider</artifactId>
134             <version>${ccsdk.sli.adaptors.version}</version>
135         </dependency>
136         <dependency>
137              <groupId>commons-io</groupId>
138              <artifactId>commons-io</artifactId>
139         </dependency>
140         <dependency>
141         <groupId>javax.validation</groupId>
142         <artifactId>validation-api</artifactId>
143         <version>1.1.0.Final</version>
144     </dependency>
145
146         <dependency>
147             <groupId>org.onap.appc</groupId>
148             <artifactId>appc-sequence-generator-model</artifactId>
149             <version>${project.version}</version>
150         </dependency>
151     </dependencies>
152
153 </project>