Dan Timoney | 37d6468 | 2017-09-21 16:07:02 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 7 | <artifactId>ccsdk-sli-core</artifactId> |
| 8 | <version>0.1.2-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | |
| 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <packaging>bundle</packaging> |
| 13 | <artifactId>utils-provider</artifactId> |
| 14 | <name>SLI Core Utilities Package</name> |
| 15 | |
| 16 | <description> |
| 17 | The SLI Core Utilities Package provides common functionality for setting up SLI connectivity. |
| 18 | </description> |
| 19 | |
| 20 | <dependencies> |
| 21 | <dependency> |
| 22 | <groupId>com.google.guava</groupId> |
| 23 | <artifactId>guava</artifactId> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>equinoxSDK381</groupId> |
| 27 | <artifactId>org.eclipse.osgi</artifactId> |
| 28 | <version>${equinox.osgi.version}</version> |
| 29 | </dependency> |
| 30 | |
| 31 | <!-- Testing Dependencies --> |
| 32 | <dependency> |
| 33 | <groupId>org.mockito</groupId> |
| 34 | <artifactId>mockito-core</artifactId> |
| 35 | <scope>test</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>junit</groupId> |
| 39 | <artifactId>junit</artifactId> |
Gaurav Agrawal | a0ee49c | 2017-09-25 14:48:42 +0530 | [diff] [blame^] | 40 | <version>${junit.version}</version> |
Dan Timoney | 37d6468 | 2017-09-21 16:07:02 -0400 | [diff] [blame] | 41 | <scope>test</scope> |
| 42 | </dependency> |
| 43 | </dependencies> |
| 44 | |
| 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>maven-bundle-plugin</artifactId> |
| 50 | <version>${bundle.plugin.version}</version> |
| 51 | </plugin> |
| 52 | </plugins> |
| 53 | </build> |
| 54 | <organization> |
| 55 | <name>Inocybe Technologies and Others</name> |
| 56 | </organization> |
| 57 | </project> |