blob: 7a4e8c9ed5e22ce8d70f81942c7c1d8ceb09ed67 [file] [log] [blame]
Dan Timoney37d64682017-09-21 16:07:02 -04001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoney131cb462018-02-01 16:57:00 -05002<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">
3 <modelVersion>4.0.0</modelVersion>
Dan Timoney37d64682017-09-21 16:07:02 -04004
5 <parent>
Dan Timoney131cb462018-02-01 16:57:00 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
8 <version>1.0.1-SNAPSHOT</version>
9 <relativePath/>
Dan Timoney37d64682017-09-21 16:07:02 -040010 </parent>
11
Dan Timoney131cb462018-02-01 16:57:00 -050012 <groupId>org.onap.ccsdk.sli.core</groupId>
Dan Timoney37d64682017-09-21 16:07:02 -040013 <artifactId>utils-provider</artifactId>
Dan Timoney131cb462018-02-01 16:57:00 -050014 <version>0.2.1-SNAPSHOT</version>
15 <packaging>bundle</packaging>
Dan Timoney37d64682017-09-21 16:07:02 -040016
Dan Timoney131cb462018-02-01 16:57:00 -050017 <name>ccsdk-sli-core :: utils :: ${project.artifactId}</name>
Dan Timoney37d64682017-09-21 16:07:02 -040018 <description>
19 The SLI Core Utilities Package provides common functionality for setting up SLI connectivity.
20 </description>
Dan Timoney131cb462018-02-01 16:57:00 -050021 <organization>
22 <name>ONAP</name>
23 </organization>
Dan Timoney37d64682017-09-21 16:07:02 -040024
25 <dependencies>
26 <dependency>
27 <groupId>com.google.guava</groupId>
28 <artifactId>guava</artifactId>
29 </dependency>
30 <dependency>
31 <groupId>equinoxSDK381</groupId>
32 <artifactId>org.eclipse.osgi</artifactId>
33 <version>${equinox.osgi.version}</version>
Dan Timoney131cb462018-02-01 16:57:00 -050034 <scope>provided</scope>
Dan Timoney37d64682017-09-21 16:07:02 -040035 </dependency>
36
37 <!-- Testing Dependencies -->
38 <dependency>
39 <groupId>org.mockito</groupId>
40 <artifactId>mockito-core</artifactId>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
Gaurav Agrawala0ee49c2017-09-25 14:48:42 +053046 <version>${junit.version}</version>
Dan Timoney37d64682017-09-21 16:07:02 -040047 <scope>test</scope>
48 </dependency>
49 </dependencies>
Dan Timoney37d64682017-09-21 16:07:02 -040050</project>