| <?xml version="1.0"?> |
| <!-- |
| ============LICENSE_START======================================================= |
| ONAP : APPC |
| ================================================================================ |
| Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
| ================================================================================ |
| Copyright (C) 2017 Amdocs |
| ============================================================================= |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| ============LICENSE_END========================================================= |
| --> |
| <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.onap.appc.parent</groupId> |
| <artifactId>binding-parent</artifactId> |
| <version>2.5.0</version> |
| <relativePath /> |
| </parent> |
| <groupId>org.onap.appc</groupId> |
| <artifactId>appc-sequence-generator-bundle</artifactId> |
| <version>1.5.3-SNAPSHOT</version> |
| <name>appc-sequence-generator-bundle</name> |
| <packaging>bundle</packaging> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>${bundle.plugin.version}</version> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Bundle-SymbolicName>appc-sequence-generator-bundle</Bundle-SymbolicName> |
| <!-- <Bundle-Activator>org.onap.appc.seqgen.SequenceGeneratorActivator</Bundle-Activator>--> |
| <Export-Package>org.onap.appc.seqgen.*</Export-Package> |
| <Import-Package>org.onap.appc.domainmodel.lcm,*;resolution:=optional</Import-Package> |
| <DynamicImport-Package>*</DynamicImport-Package> |
| <Embed-Transitive>true</Embed-Transitive> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.opendaylight.controller</groupId> |
| <artifactId>config-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.opendaylight.controller</groupId> |
| <artifactId>sal-common-util</artifactId> |
| </dependency> |
| <dependency> |
| <artifactId>sal-test-model</artifactId> |
| <groupId>org.opendaylight.controller</groupId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.appc</groupId> |
| <artifactId>appc-dg-dependency-model</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-annotations</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.sli.core</groupId> |
| <artifactId>sli-common</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.sli.core</groupId> |
| <artifactId>sli-provider</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.appc</groupId> |
| <artifactId>appc-dg-domain-model-lib</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.appc</groupId> |
| <artifactId>domain-model-lib</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.velocity</groupId> |
| <artifactId>velocity</artifactId> |
| <version>1.7</version> |
| <exclusions> |
| <exclusion> |
| <artifactId>commons-collections</artifactId> |
| <groupId>commons-collections</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>commons-collections</groupId> |
| <artifactId>commons-collections</artifactId> |
| <version>3.2.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| <artifactId>sql-resource-provider</artifactId> |
| <version>${ccsdk.sli.adaptors.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>javax.validation</groupId> |
| <artifactId>validation-api</artifactId> |
| <version>1.1.0.Final</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.onap.appc</groupId> |
| <artifactId>appc-sequence-generator-model</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| </dependencies> |
| |
| </project> |