blob: 4173707c0e1cce7c96f1351cbb70e5ab050eacbc [file] [log] [blame]
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +05301<?xml version="1.0"?>
Skip Wonnell8e5e3172018-01-11 14:10:33 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Bradya6fbd202019-01-22 14:19:54 -08006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8e5e3172018-01-11 14:10:33 -06007 ================================================================================
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
Skip Wonnell8e5e3172018-01-11 14:10:33 -060022 ============LICENSE_END=========================================================
23-->
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053024<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>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070028 <parent>
29 <groupId>org.onap.appc.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Patrick Bradyd4c14b12019-05-08 12:57:09 -070031 <version>2.5.0</version>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070032 <relativePath />
33 </parent>
Patrick Brady07567592017-12-13 11:09:30 -080034 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053035 <artifactId>appc-sequence-generator-bundle</artifactId>
Patrick Brady350a1d92019-06-13 12:28:11 -070036 <version>1.5.3-SNAPSHOT</version>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053037 <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>
Patrick Brady07567592017-12-13 11:09:30 -080050 <!-- <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>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053053 <DynamicImport-Package>*</DynamicImport-Package>
54 <Embed-Transitive>true</Embed-Transitive>
55 </instructions>
56 </configuration>
57 </plugin>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053058 </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>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053073 <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>
Patrick Brady07567592017-12-13 11:09:30 -080081 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053082 <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>
Patrick Brady76706002017-09-04 21:37:25 -070098 <groupId>org.onap.ccsdk.sli.core</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053099 <artifactId>sli-common</artifactId>
100 </dependency>
101 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700102 <groupId>org.onap.ccsdk.sli.core</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530103 <artifactId>sli-provider</artifactId>
104 </dependency>
105 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800106 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530107 <artifactId>appc-dg-domain-model-lib</artifactId>
108 <version>${project.version}</version>
109 </dependency>
110 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800111 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530112 <artifactId>domain-model-lib</artifactId>
113 <version>${project.version}</version>
114 </dependency>
George, Lina (lg941u)72dbb192018-07-06 12:25:32 -0400115 <dependency>
116 <groupId>org.apache.velocity</groupId>
117 <artifactId>velocity</artifactId>
118 <version>1.7</version>
Taka Cho8678a532018-08-19 20:46:00 -0400119 <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>
George, Lina (lg941u)72dbb192018-07-06 12:25:32 -0400131 <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>
Patrick Brady32229082018-08-09 12:05:53 -0700140 <dependency>
141 <groupId>javax.validation</groupId>
142 <artifactId>validation-api</artifactId>
143 <version>1.1.0.Final</version>
144 </dependency>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530145
146 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800147 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +0530148 <artifactId>appc-sequence-generator-model</artifactId>
149 <version>${project.version}</version>
150 </dependency>
151 </dependencies>
152
153</project>