Bug 4202: Migration to use mdsal project
[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.4.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>org.apache.commons</groupId>
26       <artifactId>commons-lang3</artifactId>
27     </dependency>
28
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>yang-jmx-generator</artifactId>
32     </dependency>
33
34     <dependency>
35       <groupId>org.opendaylight.mdsal</groupId>
36       <artifactId>mdsal-binding-generator-impl</artifactId>
37     </dependency>
38
39     <dependency>
40       <groupId>org.opendaylight.yangtools</groupId>
41       <artifactId>mockito-configuration</artifactId>
42     </dependency>
43
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-maven-plugin-spi</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.apache.maven</groupId>
50       <artifactId>maven-core</artifactId>
51     </dependency>
52
53     <dependency>
54       <groupId>org.slf4j</groupId>
55       <artifactId>slf4j-api</artifactId>
56     </dependency>
57
58     <dependency>
59       <groupId>net.sourceforge.pmd</groupId>
60       <artifactId>pmd</artifactId>
61       <scope>test</scope>
62     </dependency>
63
64     <dependency>
65       <groupId>org.eclipse</groupId>
66       <artifactId>jdt</artifactId>
67       <scope>test</scope>
68
69       <exclusions>
70         <exclusion>
71           <groupId>org.eclipse.equinox</groupId>
72           <artifactId>app</artifactId>
73         </exclusion>
74       </exclusions>
75     </dependency>
76
77     <dependency>
78       <groupId>org.eclipse.equinox</groupId>
79       <artifactId>app</artifactId>
80       <scope>test</scope>
81     </dependency>
82
83     <dependency>
84       <groupId>org.eclipse.jdt</groupId>
85       <artifactId>core</artifactId>
86       <scope>test</scope>
87
88       <exclusions>
89         <exclusion>
90           <groupId>org.eclipse.equinox</groupId>
91           <artifactId>app</artifactId>
92         </exclusion>
93       </exclusions>
94
95     </dependency>
96
97     <dependency>
98       <groupId>org.opendaylight.controller</groupId>
99       <artifactId>yang-jmx-generator</artifactId>
100       <type>test-jar</type>
101       <scope>test</scope>
102     </dependency>
103
104   </dependencies>
105
106 </project>