Merge "Bug 714 - Fixed creating DOM Document's element with namespace"
[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.5-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>net.sourceforge.pmd</groupId>
36             <artifactId>pmd</artifactId>
37             <version>5.1.0</version>
38             <scope>test</scope>
39         </dependency>
40
41
42         <dependency>
43             <groupId>org.eclipse.jdt</groupId>
44             <artifactId>core</artifactId>
45             <version>3.3.0-v_771</version>
46             <scope>test</scope>
47
48             <exclusions>
49                 <exclusion>
50                     <groupId>org.eclipse.equinox</groupId>
51                     <artifactId>app</artifactId>
52                 </exclusion>
53             </exclusions>
54
55         </dependency>
56
57         <dependency>
58             <groupId>org.eclipse.equinox</groupId>
59             <artifactId>app</artifactId>
60             <version>1.0.0-v20070606</version>
61             <scope>test</scope>
62         </dependency>
63
64
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>config-api</artifactId>
68         </dependency>
69
70         <dependency>
71             <groupId>commons-io</groupId>
72             <artifactId>commons-io</artifactId>
73         </dependency>
74
75         <dependency>
76             <groupId>com.jcabi</groupId>
77             <artifactId>jcabi-maven-slf4j</artifactId>
78             <version>0.8</version>
79         </dependency>
80
81         <dependency>
82             <groupId>com.google.guava</groupId>
83             <artifactId>guava</artifactId>
84         </dependency>
85
86         <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>yang-jmx-generator</artifactId>
89             <scope>test</scope>
90             <type>test-jar</type>
91         </dependency>
92
93         <dependency>
94             <groupId>org.eclipse</groupId>
95             <artifactId>jdt</artifactId>
96             <version>3.3.0-v20070607-1300</version>
97             <scope>test</scope>
98
99             <exclusions>
100                 <exclusion>
101                     <groupId>org.eclipse.equinox</groupId>
102                     <artifactId>app</artifactId>
103                 </exclusion>
104             </exclusions>
105         </dependency>
106
107         <dependency>
108             <groupId>org.opendaylight.yangtools</groupId>
109             <artifactId>mockito-configuration</artifactId>
110         </dependency>
111
112         <dependency>
113             <groupId>org.apache.commons</groupId>
114             <artifactId>commons-lang3</artifactId>
115         </dependency>
116
117         <dependency>
118             <groupId>org.codehaus.gmaven.runtime</groupId>
119             <artifactId>gmaven-runtime-2.0</artifactId>
120             <version>1.5</version>
121             <exclusions>
122                 <exclusion>
123                     <groupId>org.sonatype.gossip</groupId>
124                     <artifactId>gossip</artifactId>
125                 </exclusion>
126             </exclusions>
127         </dependency>
128
129     </dependencies>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <artifactId>maven-compiler-plugin</artifactId>
135                 <version>3.1</version>
136                 <configuration>
137                     <compilerId>groovy-eclipse-compiler</compilerId>
138                     <verbose>false</verbose>
139                 </configuration>
140                 <dependencies>
141                     <dependency>
142                         <groupId>org.codehaus.groovy</groupId>
143                         <artifactId>groovy-eclipse-compiler</artifactId>
144                         <version>2.8.0-01</version>
145                     </dependency>
146
147                     <dependency>
148                         <groupId>org.codehaus.groovy</groupId>
149                         <artifactId>groovy-eclipse-batch</artifactId>
150                         <version>2.1.8-01</version>
151                     </dependency>
152                 </dependencies>
153             </plugin>
154
155         </plugins>
156     </build>
157 </project>