blob: a18054be8b9833696418e7250eb407e52f46cc6e [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)54e11e92019-11-13 10:30:06 -05007 <version>1.5.0</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)cd53f2f2019-09-11 10:41:38 -040013 <version>0.7.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>
Smokowski, Kevin (ks6305)bc136f32019-05-29 21:25:31 +000051 <scope>provided</scope>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080052 </dependency>
53 <dependency>
54 <groupId>org.onap.ccsdk.sli.core</groupId>
55 <artifactId>sli-provider</artifactId>
56 <version>${ccsdk.sli.core.version}</version>
Smokowski, Kevin (ks6305)bc136f32019-05-29 21:25:31 +000057 <scope>provided</scope>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080058 </dependency>
59 <dependency>
60 <artifactId>sal-test-model</artifactId>
61 <groupId>org.opendaylight.controller</groupId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.opendaylight.controller</groupId>
66 <artifactId>sal-binding-broker-impl</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.opendaylight.controller</groupId>
71 <artifactId>sal-binding-broker-impl</artifactId>
72 <classifier>tests</classifier>
73 <type>test-jar</type>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080079 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.mockito</groupId>
83 <artifactId>mockito-core</artifactId>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080084 <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>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -080098 <scope>provided</scope>
99 </dependency>
Haddox, Anthony3a505572019-04-17 09:07:36 -0700100 <dependency>
101 <groupId>com.github.stefanbirkner</groupId>
102 <artifactId>system-rules</artifactId>
Haddox, Anthony3a505572019-04-17 09:07:36 -0700103 <scope>test</scope>
104 </dependency>
Haddox, Anthony4fc631c2019-01-23 06:10:06 -0800105 </dependencies>
106</project>