Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Skip Wonnell | 8e5e317 | 2018-01-11 14:10:33 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
Patrick Brady | a6fbd20 | 2019-01-22 14:19:54 -0800 | [diff] [blame] | 6 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 8e5e317 | 2018-01-11 14:10:33 -0600 | [diff] [blame] | 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 | |
Skip Wonnell | 8e5e317 | 2018-01-11 14:10:33 -0600 | [diff] [blame] | 22 | ============LICENSE_END========================================================= |
| 23 | --> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 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> |
Patrick Brady | d3ef547 | 2018-08-10 15:14:38 -0700 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.onap.appc.parent</groupId> |
| 30 | <artifactId>binding-parent</artifactId> |
Patrick Brady | d4c14b1 | 2019-05-08 12:57:09 -0700 | [diff] [blame] | 31 | <version>2.5.0</version> |
Patrick Brady | d3ef547 | 2018-08-10 15:14:38 -0700 | [diff] [blame] | 32 | <relativePath /> |
| 33 | </parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 34 | <groupId>org.onap.appc</groupId> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 35 | <artifactId>appc-sequence-generator-bundle</artifactId> |
Patrick Brady | 350a1d9 | 2019-06-13 12:28:11 -0700 | [diff] [blame] | 36 | <version>1.5.3-SNAPSHOT</version> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 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> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 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> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 53 | <DynamicImport-Package>*</DynamicImport-Package> |
| 54 | <Embed-Transitive>true</Embed-Transitive> |
| 55 | </instructions> |
| 56 | </configuration> |
| 57 | </plugin> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 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> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 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> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 81 | <groupId>org.onap.appc</groupId> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 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> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 98 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 99 | <artifactId>sli-common</artifactId> |
| 100 | </dependency> |
| 101 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 102 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 103 | <artifactId>sli-provider</artifactId> |
| 104 | </dependency> |
| 105 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 106 | <groupId>org.onap.appc</groupId> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 107 | <artifactId>appc-dg-domain-model-lib</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | </dependency> |
| 110 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 111 | <groupId>org.onap.appc</groupId> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 112 | <artifactId>domain-model-lib</artifactId> |
| 113 | <version>${project.version}</version> |
| 114 | </dependency> |
George, Lina (lg941u) | 72dbb19 | 2018-07-06 12:25:32 -0400 | [diff] [blame] | 115 | <dependency> |
| 116 | <groupId>org.apache.velocity</groupId> |
| 117 | <artifactId>velocity</artifactId> |
| 118 | <version>1.7</version> |
Taka Cho | 8678a53 | 2018-08-19 20:46:00 -0400 | [diff] [blame] | 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> |
George, Lina (lg941u) | 72dbb19 | 2018-07-06 12:25:32 -0400 | [diff] [blame] | 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> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 140 | <dependency> |
| 141 | <groupId>javax.validation</groupId> |
| 142 | <artifactId>validation-api</artifactId> |
| 143 | <version>1.1.0.Final</version> |
| 144 | </dependency> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 145 | |
| 146 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 147 | <groupId>org.onap.appc</groupId> |
Kalpesh Chaniyara | 5b75909 | 2017-08-15 23:40:34 +0530 | [diff] [blame] | 148 | <artifactId>appc-sequence-generator-model</artifactId> |
| 149 | <version>${project.version}</version> |
| 150 | </dependency> |
| 151 | </dependencies> |
| 152 | |
| 153 | </project> |