Merge "Bug 2731: Discard changes only when transaction exist."
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / features / pom.xml
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 <?xml version="1.0" encoding="UTF-8"?>
5 <!--
6 ${copyright} and others. All rights reserved.
7 This program and the accompanying materials are made available under the
8 terms of the Eclipse Public License v1.0 which accompanies this distribution,
9 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
10 -->
11 <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">
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.5.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <groupId>${groupId}</groupId>
19   <artifactId>${artifactId}-features</artifactId>
20   <version>${version}</version>
21   <name>${project.artifactId}</name>
22   <modelVersion>4.0.0</modelVersion>
23   <prerequisites>
24     <maven>3.1.1</maven>
25   </prerequisites>
26   <properties>
27     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
28     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
29     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
30   </properties>
31   <dependencyManagement>
32     <dependencies>
33       <!-- project specific dependencies -->
34       <dependency>
35         <groupId>org.opendaylight.controller</groupId>
36         <artifactId>mdsal-artifacts</artifactId>
37         <version>${mdsal.version}</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41     </dependencies>
42   </dependencyManagement>
43   <dependencies>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>features-yangtools</artifactId>
47       <classifier>features</classifier>
48       <version>${yangtools.version}</version>
49       <type>xml</type>
50       <scope>runtime</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>features-mdsal</artifactId>
55       <classifier>features</classifier>
56       <version>${mdsal.version}</version>
57       <type>xml</type>
58       <scope>runtime</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>features-restconf</artifactId>
63       <classifier>features</classifier>
64       <version>${mdsal.version}</version>
65       <type>xml</type>
66       <scope>runtime</scope>
67     </dependency>
68     <dependency>
69       <groupId>${symbol_dollar}{project.groupId}</groupId>
70       <artifactId>${artifactId}-impl</artifactId>
71       <version>${symbol_dollar}{project.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>${symbol_dollar}{project.groupId}</groupId>
75       <artifactId>${artifactId}-api</artifactId>
76       <version>${symbol_dollar}{project.version}</version>
77     </dependency>
78   </dependencies>
79 </project>