blob: ab54f13045a2ca8f9d36945643640c278084e9d7 [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>
Timoney, Dan (dt5972)e38215f2019-04-30 09:57:41 -04008 <version>1.3.0-SNAPSHOT</version>
Dan Timoney131cb462018-02-01 16:57:00 -05009 <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>
Timoney, Dan (dt5972)e38215f2019-04-30 09:57:41 -040014 <version>0.5.0-SNAPSHOT</version>
Dan Timoney131cb462018-02-01 16:57:00 -050015 <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>
Timoney, Dan (dt5972)a7d1da32018-06-15 16:13:55 -040030 <dependency>
31 <groupId>org.osgi</groupId>
32 <artifactId>org.osgi.core</artifactId>
33 <scope>provided</scope>
34 </dependency>
Dan Timoney37d64682017-09-21 16:07:02 -040035
36 <!-- Testing Dependencies -->
37 <dependency>
38 <groupId>org.mockito</groupId>
39 <artifactId>mockito-core</artifactId>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
Gaurav Agrawala0ee49c2017-09-25 14:48:42 +053045 <version>${junit.version}</version>
Dan Timoney37d64682017-09-21 16:07:02 -040046 <scope>test</scope>
47 </dependency>
48 </dependencies>
Dan Timoney37d64682017-09-21 16:07:02 -040049</project>