blob: b624e069e99b672511c0d0f5e175865a4ef5b5af [file] [log] [blame]
Haddox, Anthony4fc631c2019-01-23 06:10:06 -08001<?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" 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>
4 <parent>
5 <groupId>org.onap.ccsdk.parent</groupId>
6 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)d5f883f2019-04-30 11:54:52 -04007 <version>1.3.0-SNAPSHOT</version>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -08008 <relativePath/>
9 </parent>
10 <name>ccsdk-sli-plugins :: gr-toolkit :: ${project.artifactId}</name>
11 <groupId>org.onap.ccsdk.sli.plugins</groupId>
12 <artifactId>gr-toolkit-provider</artifactId>
Timoney, Dan (dt5972)d5f883f2019-04-30 11:54:52 -040013 <version>0.5.0-SNAPSHOT</version>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080014 <packaging>bundle</packaging>
15
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>maven-bundle-plugin</artifactId>
21 <extensions>true</extensions>
22 <configuration>
23 <instructions>
24 <Export-Package>org.opendaylight.controller.config.yang.config.gr-toolkit_provider</Export-Package>
25 <Import-Package>*</Import-Package>
26 </instructions>
27 </configuration>
28 </plugin>
29 </plugins>
30 </build>
31
32 <dependencies>
33 <dependency>
34 <groupId>org.onap.ccsdk.sli.plugins</groupId>
35 <artifactId>gr-toolkit-model</artifactId>
36 <version>${project.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>org.opendaylight.controller</groupId>
40 <artifactId>sal-binding-api</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.onap.ccsdk.sli.core</groupId>
44 <artifactId>dblib-provider</artifactId>
45 <version>${ccsdk.sli.core.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.onap.ccsdk.sli.core</groupId>
49 <artifactId>sli-common</artifactId>
50 <version>${ccsdk.sli.core.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>org.onap.ccsdk.sli.core</groupId>
54 <artifactId>sli-provider</artifactId>
55 <version>${ccsdk.sli.core.version}</version>
56 </dependency>
57 <dependency>
58 <artifactId>sal-test-model</artifactId>
59 <groupId>org.opendaylight.controller</groupId>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.opendaylight.controller</groupId>
64 <artifactId>sal-binding-broker-impl</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.opendaylight.controller</groupId>
69 <artifactId>sal-binding-broker-impl</artifactId>
70 <classifier>tests</classifier>
71 <type>test-jar</type>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>junit</groupId>
76 <artifactId>junit</artifactId>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080077 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.mockito</groupId>
81 <artifactId>mockito-core</artifactId>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080082 <scope>test</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.json</groupId>
86 <artifactId>json</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.opendaylight.controller</groupId>
90 <artifactId>sal-distributed-datastore</artifactId>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
94 <groupId>com.typesafe.akka</groupId>
95 <artifactId>akka-cluster_2.12</artifactId>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080096 <scope>provided</scope>
97 </dependency>
Haddox, Anthony3a505572019-04-17 09:07:36 -070098 <dependency>
99 <groupId>com.github.stefanbirkner</groupId>
100 <artifactId>system-rules</artifactId>
Haddox, Anthony3a505572019-04-17 09:07:36 -0700101 <scope>test</scope>
102 </dependency>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -0800103 </dependencies>
104</project>