Initial nemo project structure.
[nemo.git] / nemo-artifacts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <groupId>org.opendaylight.nemo</groupId>
13   <artifactId>nemo-artifacts</artifactId>
14   <version>1.0.0-SNAPSHOT</version>
15   <packaging>pom</packaging>
16   <name>${project.artifactId}</name>
17
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>${project.groupId}</groupId>
22         <artifactId>nemo-api</artifactId>
23         <version>${project.version}</version>
24       </dependency>
25       <dependency>
26         <groupId>${project.groupId}</groupId>
27         <artifactId>nemo-impl</artifactId>
28         <version>${project.version}</version>
29       </dependency>
30       <dependency>
31         <groupId>${project.groupId}</groupId>
32         <artifactId>openflow-renderer</artifactId>
33         <version>${project.version}</version>
34       </dependency>
35       <dependency>
36         <groupId>${project.groupId}</groupId>
37         <artifactId>nemo-ui</artifactId>
38         <version>${project.version}</version>
39       </dependency>
40       <dependency>
41         <groupId>${project.groupId}</groupId>
42         <artifactId>nemo-features</artifactId>
43         <version>${project.version}</version>
44         <classifier>features</classifier>
45         <type>xml</type>
46       </dependency>
47     </dependencies>
48   </dependencyManagement>
49
50   <scm>
51     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
52     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
53     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
54     <tag>HEAD</tag>
55   </scm>
56 </project>