Add NETCONF to integration/distribution
[integration/distribution.git] / artifacts / upstream / feature-repos / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2017 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.integration</groupId>
16         <artifactId>properties</artifactId>
17         <version>0.7.0-SNAPSHOT</version>
18         <relativePath>../properties</relativePath>
19     </parent>
20     <artifactId>feature-repo-artifacts</artifactId>
21     <packaging>pom</packaging>
22     <!-- <name> formatting is used by autorelease to parse and notify projects on
23          build failure. Please do not modify this unless you have a good reason. -->
24     <name>ODL :: integration :: ${project.artifactId}</name>
25     <description>POM to import, with all upstream ODL user-facing feature repo artifact versions.</description>
26     <url>https://wiki.opendaylight.org/view/Integration/Distribution</url>
27     <licenses>
28         <license>
29             <name>Eclipse Public License v1.0</name>
30             <url>http://www.eclipse.org/legal/epl-v10.html</url>
31         </license>
32     </licenses>
33     <!-- FIXME: Add developers section -->
34     <scm>
35         <connection>scm:git:https://git.opendaylight.org/gerrit/integration/distribution.git</connection>
36         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration/distribution.git</developerConnection>
37         <url>https://git.opendaylight.org/gerrit/gitweb?p=integration/distribution.git;a=tree;f=artifacts/upstream/feature-repos;hb=HEAD</url>
38         <tag>HEAD</tag>
39     </scm>
40     <!-- TODO: Open Bugs against projects to export user-facing feature repository versions in artifact poms. -->
41     <dependencyManagement>
42         <dependencies>
43
44             <!-- User facing feature repositories. -->
45
46             <!-- AAA -->
47             <dependency>
48                 <groupId>org.opendaylight.aaa</groupId>
49                 <artifactId>features-aaa</artifactId>
50                 <version>${aaa.version}</version>
51                 <classifier>features</classifier>
52                 <type>xml</type>
53             </dependency>
54             <dependency>
55                 <groupId>org.opendaylight.aaa</groupId>
56                 <artifactId>features-aaa-shiro</artifactId>
57                 <version>${aaa.version}</version>
58                 <classifier>features</classifier>
59                 <type>xml</type>
60             </dependency>
61
62             <!-- Controller -->
63             <dependency>
64                 <groupId>org.opendaylight.controller</groupId>
65                 <artifactId>features-extras</artifactId>
66                 <version>${controller.extras.version}</version>
67                 <classifier>features</classifier>
68                 <type>xml</type>
69             </dependency>
70             <dependency>
71                 <groupId>org.opendaylight.controller</groupId>
72                 <artifactId>features-mdsal</artifactId>
73                 <version>${mdsal.version}</version>
74                 <classifier>features</classifier>
75                 <type>xml</type>
76             </dependency>
77             <dependency>
78                 <groupId>org.opendaylight.controller</groupId>
79                 <artifactId>features-mdsal-benchmark</artifactId>
80                 <version>${benchmark.version}</version>
81                 <classifier>features</classifier>
82                 <type>xml</type>
83             </dependency>
84
85             <!-- Dlux -->
86             <dependency>
87                 <groupId>org.opendaylight.dlux</groupId>
88                 <artifactId>features-dlux</artifactId>
89                 <version>${dlux.version}</version>
90                 <classifier>features</classifier>
91                 <type>xml</type>
92             </dependency>
93
94             <!-- DluxApps -->
95             <dependency>
96                 <groupId>org.opendaylight.dluxapps</groupId>
97                 <artifactId>features-dluxapps</artifactId>
98                 <version>${dluxapps.version}</version>
99                 <classifier>features</classifier>
100                 <type>xml</type>
101             </dependency>
102
103             <!-- InfraUtils -->
104             <dependency>
105                 <groupId>org.opendaylight.infrautils</groupId>
106                 <artifactId>infrautils-features</artifactId>
107                 <version>${infrautils.version}</version>
108                 <classifier>features</classifier>
109                 <type>xml</type>
110             </dependency>
111
112             <!-- ODL Parent -->
113             <dependency>
114                 <groupId>org.opendaylight.odlparent</groupId>
115                 <artifactId>features-akka</artifactId>
116                 <version>${odlparent.version}</version>
117                 <classifier>features</classifier>
118                 <type>xml</type>
119             </dependency>
120             <dependency>
121                 <groupId>org.opendaylight.odlparent</groupId>
122                 <artifactId>features-odlparent</artifactId>
123                 <version>${odlparent.version}</version>
124                 <classifier>features</classifier>
125                 <type>xml</type>
126             </dependency>
127
128             <!-- SXP -->
129             <dependency>
130                 <groupId>org.opendaylight.sxp</groupId>
131                 <artifactId>features-sxp</artifactId>
132                 <version>${sxp.version}</version>
133                 <classifier>features</classifier>
134                 <type>xml</type>
135             </dependency>
136
137             <!-- TTP -->
138             <dependency>
139                 <groupId>org.opendaylight.ttp</groupId>
140                 <artifactId>features-ttp</artifactId>
141                 <version>${ttp.version}</version>
142                 <classifier>features</classifier>
143                 <type>xml</type>
144             </dependency>
145
146             <!-- VTN -->
147             <dependency>
148                 <groupId>org.opendaylight.vtn</groupId>
149                 <artifactId>features-vtn-manager</artifactId>
150                 <version>${vtn-manager.version}</version>
151                 <classifier>features</classifier>
152                 <type>xml</type>
153             </dependency>
154
155         </dependencies>
156     </dependencyManagement>
157 </project>