Merge "creating a default subnet"
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          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         <artifactId>config-subsystem</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.2.3-SNAPSHOT</version>
8         <relativePath>..</relativePath>
9     </parent>
10     <artifactId>yang-jmx-generator-plugin</artifactId>
11
12     <dependencies>
13
14         <dependency>
15             <groupId>org.slf4j</groupId>
16             <artifactId>slf4j-api</artifactId>
17         </dependency>
18
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>yang-jmx-generator</artifactId>
22         </dependency>
23
24         <dependency>
25             <groupId>org.opendaylight.yangtools</groupId>
26             <artifactId>yang-maven-plugin-spi</artifactId>
27         </dependency>
28
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>binding-type-provider</artifactId>
32         </dependency>
33
34         <dependency>
35             <groupId>org.eclipse.jdt</groupId>
36             <artifactId>core</artifactId>
37             <version>3.3.0-v_771</version>
38             <scope>test</scope>
39
40             <exclusions>
41                 <exclusion>
42                     <groupId>org.eclipse.equinox</groupId>
43                     <artifactId>app</artifactId>
44                 </exclusion>
45             </exclusions>
46
47         </dependency>
48
49         <dependency>
50             <groupId>org.eclipse.equinox</groupId>
51             <artifactId>app</artifactId>
52             <version>1.0.0-v20070606</version>
53             <scope>test</scope>
54         </dependency>
55
56
57         <dependency>
58             <groupId>org.freemarker</groupId>
59             <artifactId>freemarker</artifactId>
60             <version>2.3.20</version>
61         </dependency>
62
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>config-api</artifactId>
66         </dependency>
67
68         <dependency>
69             <groupId>commons-io</groupId>
70             <artifactId>commons-io</artifactId>
71         </dependency>
72
73         <dependency>
74             <groupId>com.googlecode.slf4j-maven-plugin-log</groupId>
75             <artifactId>slf4j-maven-plugin-log</artifactId>
76             <version>1.0.0</version>
77         </dependency>
78
79         <dependency>
80             <groupId>com.google.guava</groupId>
81             <artifactId>guava</artifactId>
82         </dependency>
83
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>yang-jmx-generator</artifactId>
87             <scope>test</scope>
88             <type>test-jar</type>
89         </dependency>
90
91         <dependency>
92             <groupId>org.eclipse</groupId>
93             <artifactId>jdt</artifactId>
94             <version>3.3.0-v20070607-1300</version>
95             <scope>test</scope>
96
97             <exclusions>
98                 <exclusion>
99                     <groupId>org.eclipse.equinox</groupId>
100                     <artifactId>app</artifactId>
101                 </exclusion>
102             </exclusions>
103         </dependency>
104
105         <dependency>
106             <groupId>org.opendaylight.bgpcep</groupId>
107             <artifactId>mockito-configuration</artifactId>
108             <scope>test</scope>
109         </dependency>
110
111         <dependency>
112             <groupId>org.apache.commons</groupId>
113             <artifactId>commons-lang3</artifactId>
114         </dependency>
115     </dependencies>
116
117     <build>
118         <plugins>
119             <plugin>
120                 <groupId>org.apache.maven.plugins</groupId>
121                 <artifactId>maven-jar-plugin</artifactId>
122             </plugin>
123         </plugins>
124     </build>
125 </project>