Bump yangtools to 2.0.0
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / features / odl-X-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>org.opendaylight.odlparent</groupId>
9         <artifactId>single-feature-parent</artifactId>
10         <version>3.0.1</version>
11         <relativePath/>
12     </parent>
13
14     <groupId>${groupId}</groupId>
15     <artifactId>odl-${artifactId}-api</artifactId>
16     <version>${version}</version>
17     <packaging>feature</packaging>
18
19     <name>OpenDaylight :: ${artifactId} :: API [Karaf Feature]</name>
20
21     <dependencyManagement>
22         <dependencies>
23             <dependency>
24                 <groupId>org.opendaylight.mdsal.model</groupId>
25                 <artifactId>mdsal-model-artifacts</artifactId>
26                 <version>0.12.0-SNAPSHOT</version>
27                 <type>pom</type>
28                 <scope>import</scope>
29             </dependency>
30             <dependency>
31                 <groupId>org.opendaylight.controller</groupId>
32                 <artifactId>mdsal-artifacts</artifactId>
33                 <version>1.7.0-SNAPSHOT</version>
34                 <type>pom</type>
35                 <scope>import</scope>
36             </dependency>
37         </dependencies>
38     </dependencyManagement>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.opendaylight.mdsal.model</groupId>
43             <artifactId>odl-mdsal-models</artifactId>
44             <type>xml</type>
45             <classifier>features</classifier>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>${artifactId}-api</artifactId>
50             <version>${project.version}</version>
51         </dependency>
52     </dependencies>
53
54 </project>