BUG-2453 (De)Serialize enum values as defined in yang
[controller.git] / opendaylight / netconf / config-netconf-connector / 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
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.3.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>config-netconf-connector</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <!-- compile dependencies -->
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>${project.groupId}</groupId>
22       <artifactId>config-util</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>netconf-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>netconf-mapping-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>netconf-notifications-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>netconf-util</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>yang-jmx-generator</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>com.google.guava</groupId>
46       <artifactId>guava</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>commons.logback_settings</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>mockito-configuration</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.yangtools</groupId>
58       <artifactId>binding-generator-impl</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.osgi</groupId>
62       <artifactId>org.osgi.core</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.slf4j</groupId>
66       <artifactId>slf4j-api</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>xmlunit</groupId>
70       <artifactId>xmlunit</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>${project.groupId}</groupId>
74       <artifactId>config-manager</artifactId>
75       <type>test-jar</type>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>config-manager</artifactId>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>netconf-impl</artifactId>
86       <scope>test</scope>
87     </dependency>
88
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>netconf-util</artifactId>
92       <type>test-jar</type>
93       <scope>test</scope>
94     </dependency>
95
96     <dependency>
97       <groupId>${project.groupId}</groupId>
98       <artifactId>yang-test</artifactId>
99       <scope>test</scope>
100     </dependency>
101   </dependencies>
102
103   <build>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.felix</groupId>
107         <artifactId>maven-bundle-plugin</artifactId>
108         <configuration>
109           <instructions>
110             <Bundle-Activator>org.opendaylight.controller.netconf.confignetconfconnector.osgi.Activator</Bundle-Activator>
111             <Private-Package>org.opendaylight.controller.netconf.confignetconfconnector.mapping.*,
112                             org.opendaylight.controller.netconf.confignetconfconnector.operations.*,
113                             org.opendaylight.controller.netconf.confignetconfconnector.transactions,
114                             org.opendaylight.controller.netconf.confignetconfconnector.util,
115                             org.opendaylight.controller.netconf.confignetconfconnector.osgi,
116                             org.opendaylight.controller.netconf.confignetconfconnector.exception,</Private-Package>
117           </instructions>
118         </configuration>
119       </plugin>
120     </plugins>
121   </build>
122
123 </project>