Release appc
[appc.git] / appc-sequence-generator / appc-sequence-generator-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <groupId>org.onap.appc.parent</groupId>
28                 <artifactId>binding-parent</artifactId>
29                 <version>2.7.2</version>
30                 <relativePath/>
31         </parent>
32         <groupId>org.onap.appc</groupId>
33     <artifactId>appc-sequence-generator-bundle</artifactId>
34     <version>1.7.2</version>
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         </plugins>
57     </build>
58
59     <dependencies>
60         <dependency>
61             <groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.controller</groupId>
67             <artifactId>config-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>sal-common-util</artifactId>
72         </dependency>
73         <dependency>
74             <artifactId>sal-test-model</artifactId>
75             <groupId>org.opendaylight.controller</groupId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.onap.appc</groupId>
80             <artifactId>appc-dg-dependency-model</artifactId>
81             <version>${project.version}</version>
82         </dependency>
83         <dependency>
84           <groupId>com.fasterxml.jackson.core</groupId>
85           <artifactId>jackson-core</artifactId>
86         </dependency>
87         <dependency>
88           <groupId>com.fasterxml.jackson.core</groupId>
89           <artifactId>jackson-databind</artifactId>
90         </dependency>
91         <dependency>
92           <groupId>com.fasterxml.jackson.core</groupId>
93           <artifactId>jackson-annotations</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.onap.ccsdk.sli.core</groupId>
97             <artifactId>sli-common</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.onap.ccsdk.sli.core</groupId>
101             <artifactId>sli-provider</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.onap.appc</groupId>
105             <artifactId>appc-dg-domain-model-lib</artifactId>
106             <version>${project.version}</version>
107         </dependency>
108         <dependency>
109             <groupId>org.onap.appc</groupId>
110             <artifactId>domain-model-lib</artifactId>
111             <version>${project.version}</version>
112         </dependency>
113         <dependency>
114             <groupId>org.apache.velocity</groupId>
115             <artifactId>velocity</artifactId>
116             <version>1.7</version>
117             <exclusions>
118                  <exclusion>
119                       <artifactId>commons-collections</artifactId>
120                       <groupId>commons-collections</groupId>
121                  </exclusion>
122             </exclusions>
123         </dependency>
124         <dependency>
125             <groupId>commons-collections</groupId>
126             <artifactId>commons-collections</artifactId>
127             <version>3.2.2</version>
128         </dependency>
129          <dependency>
130             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
131             <artifactId>sql-resource-provider</artifactId>
132             <version>${ccsdk.sli.adaptors.version}</version>
133         </dependency>
134         <dependency>
135              <groupId>commons-io</groupId>
136              <artifactId>commons-io</artifactId>
137         </dependency>
138         <dependency>
139         <groupId>javax.validation</groupId>
140         <artifactId>validation-api</artifactId>
141         <version>1.1.0.Final</version>
142     </dependency>
143
144         <dependency>
145             <groupId>org.onap.appc</groupId>
146             <artifactId>appc-sequence-generator-model</artifactId>
147             <version>${project.version}</version>
148         </dependency>
149     </dependencies>
150
151 </project>