Initial code drop of netconf protocol implementation
[controller.git] / opendaylight / netconf / 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
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>commons.opendaylight</artifactId>
8         <version>1.4.1-SNAPSHOT</version>
9         <relativePath>../commons/opendaylight</relativePath>
10     </parent>
11
12     <groupId>org.opendaylight.controller</groupId>
13     <version>0.2.1-SNAPSHOT</version>
14     <artifactId>netconf-subsystem</artifactId>
15     <packaging>pom</packaging>
16     <name>${project.artifactId}</name>
17     <prerequisites>
18         <maven>3.0.4</maven>
19     </prerequisites>
20
21
22     <modules>
23         <module>netconf-api</module>
24         <module>netconf-impl</module>
25         <module>config-netconf-connector</module>
26         <module>netconf-util</module>
27         <module>netconf-it</module>
28         <module>config-persister-impl</module>
29         <module>netconf-mapping-api</module>
30         <module>netconf-client</module>
31     </modules>
32
33     <properties>
34         <osgi.version>5.0.0</osgi.version>
35         <maven.bundle.version>2.3.7</maven.bundle.version>
36         <slf4j.version>1.7.2</slf4j.version>
37         <java.version.source>1.7</java.version.source>
38         <java.version.target>1.7</java.version.target>
39     </properties>
40
41     <dependencies>
42         <dependency>
43             <groupId>junit</groupId>
44             <artifactId>junit</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>ch.qos.logback</groupId>
49             <artifactId>logback-classic</artifactId>
50             <scope>test</scope>
51         </dependency>
52     </dependencies>
53
54     <dependencyManagement>
55         <dependencies>
56             <dependency>
57                 <groupId>org.osgi</groupId>
58                 <artifactId>org.osgi.core</artifactId>
59                 <version>${osgi.version}</version>
60             </dependency>
61             <dependency>
62                 <groupId>org.opendaylight.bgpcep</groupId>
63                 <artifactId>mockito-configuration</artifactId>
64                 <version>${bgpcep.version}</version>
65                 <scope>test</scope>
66             </dependency>
67             <dependency>
68                 <groupId>${project.groupId}</groupId>
69                 <artifactId>config-api</artifactId>
70                 <version>${config.version}</version>
71             </dependency>
72             <dependency>
73                 <groupId>${project.groupId}</groupId>
74                 <artifactId>config-manager</artifactId>
75                 <version>${config.version}</version>
76             </dependency>
77             <dependency>
78                 <groupId>${project.groupId}</groupId>
79                 <artifactId>yang-jmx-generator</artifactId>
80                 <version>${config.version}</version>
81             </dependency>
82             <dependency>
83                 <groupId>${project.groupId}</groupId>
84                 <artifactId>config-util</artifactId>
85                 <version>${config.version}</version>
86             </dependency>
87             <dependency>
88                 <groupId>${project.groupId}</groupId>
89                 <artifactId>yang-store-api</artifactId>
90                 <version>${config.version}</version>
91             </dependency>
92             <dependency>
93                 <groupId>${project.groupId}</groupId>
94                 <artifactId>yang-store-impl</artifactId>
95                 <version>${config.version}</version>
96             </dependency>
97             <dependency>
98                 <groupId>${project.groupId}</groupId>
99                 <artifactId>yang-test</artifactId>
100                 <version>${config.version}</version>
101             </dependency>
102         </dependencies>
103     </dependencyManagement>
104
105
106     <build>
107         <plugins>
108             <plugin>
109                 <groupId>org.apache.maven.plugins</groupId>
110                 <artifactId>maven-compiler-plugin</artifactId>
111                 <version>2.5.1</version>
112                 <configuration>
113                     <source>${java.version.source}</source>
114                     <target>${java.version.target}</target>
115                     <testSource>${java.version.source}</testSource>
116                     <testTarget>${java.version.target}</testTarget>
117                 </configuration>
118             </plugin>
119         </plugins>
120         <pluginManagement>
121             <plugins>
122                 <plugin>
123                     <groupId>org.apache.felix</groupId>
124                     <artifactId>maven-bundle-plugin</artifactId>
125                     <version>${maven.bundle.version}</version>
126                     <extensions>true</extensions>
127                     <configuration>
128                         <instructions>
129                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
130                         </instructions>
131                     </configuration>
132                 </plugin>
133             </plugins>
134
135         </pluginManagement>
136     </build>
137     <!--
138     <repositories>
139         <repository>
140             <id>opendaylight-snapshot</id>
141             <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot</url>
142             <snapshots>
143                 <updatePolicy>daily</updatePolicy>
144             </snapshots>
145         </repository>
146     </repositories>
147     -->
148 </project>