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