Merge "BUG-2288: DOMNotification API"
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / pom.xml
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" 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.opendaylight.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.3.0-SNAPSHOT</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>yang-jmx-generator-plugin</artifactId>
11
12   <dependencies>
13
14     <dependency>
15       <groupId>${project.groupId}</groupId>
16       <artifactId>config-api</artifactId>
17     </dependency>
18
19     <dependency>
20       <groupId>com.google.guava</groupId>
21       <artifactId>guava</artifactId>
22     </dependency>
23
24     <dependency>
25       <groupId>com.jcabi</groupId>
26       <artifactId>jcabi-maven-slf4j</artifactId>
27     </dependency>
28
29     <dependency>
30       <groupId>commons-io</groupId>
31       <artifactId>commons-io</artifactId>
32     </dependency>
33
34     <dependency>
35       <groupId>org.apache.commons</groupId>
36       <artifactId>commons-lang3</artifactId>
37     </dependency>
38
39     <dependency>
40       <groupId>org.codehaus.gmaven.runtime</groupId>
41       <artifactId>gmaven-runtime-2.0</artifactId>
42       <exclusions>
43         <exclusion>
44           <groupId>org.sonatype.gossip</groupId>
45           <artifactId>gossip</artifactId>
46         </exclusion>
47       </exclusions>
48     </dependency>
49
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>yang-jmx-generator</artifactId>
53     </dependency>
54
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>binding-type-provider</artifactId>
58     </dependency>
59
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>mockito-configuration</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>yang-maven-plugin-spi</artifactId>
68     </dependency>
69
70     <dependency>
71       <groupId>org.slf4j</groupId>
72       <artifactId>slf4j-api</artifactId>
73     </dependency>
74
75     <dependency>
76       <groupId>net.sourceforge.pmd</groupId>
77       <artifactId>pmd</artifactId>
78       <scope>test</scope>
79     </dependency>
80
81     <dependency>
82       <groupId>org.eclipse</groupId>
83       <artifactId>jdt</artifactId>
84       <scope>test</scope>
85
86       <exclusions>
87         <exclusion>
88           <groupId>org.eclipse.equinox</groupId>
89           <artifactId>app</artifactId>
90         </exclusion>
91       </exclusions>
92     </dependency>
93
94     <dependency>
95       <groupId>org.eclipse.equinox</groupId>
96       <artifactId>app</artifactId>
97       <scope>test</scope>
98     </dependency>
99
100     <dependency>
101       <groupId>org.eclipse.jdt</groupId>
102       <artifactId>core</artifactId>
103       <scope>test</scope>
104
105       <exclusions>
106         <exclusion>
107           <groupId>org.eclipse.equinox</groupId>
108           <artifactId>app</artifactId>
109         </exclusion>
110       </exclusions>
111
112     </dependency>
113
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>yang-jmx-generator</artifactId>
117       <type>test-jar</type>
118       <scope>test</scope>
119     </dependency>
120
121   </dependencies>
122
123 </project>