blob: 51a850b8d8d106100501265877ae6d3fb917e960 [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)38147a92019-03-19 18:08:37 -04007 <version>1.2.2-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)d9080712019-03-22 09:37:52 -040013 <version>0.4.2-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>
77 <version>4.11</version>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.mockito</groupId>
82 <artifactId>mockito-core</artifactId>
83 <version>1.10.19</version>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.json</groupId>
88 <artifactId>json</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.opendaylight.controller</groupId>
92 <artifactId>sal-distributed-datastore</artifactId>
93 <scope>provided</scope>
94 </dependency>
95 <dependency>
96 <groupId>com.typesafe.akka</groupId>
97 <artifactId>akka-cluster_2.12</artifactId>
98 <version>${akka.version}</version>
99 <scope>provided</scope>
100 </dependency>
Haddox, Anthony3a505572019-04-17 09:07:36 -0700101 <dependency>
102 <groupId>com.github.stefanbirkner</groupId>
103 <artifactId>system-rules</artifactId>
104 <version>1.19.0</version>
105 <scope>test</scope>
106 </dependency>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -0800107 </dependencies>
108</project>