Cleanup pom.xml layout
[mdsal.git] / entityownership / mdsal-eos-common-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>bundle-parent</artifactId>
14         <version>1.8.0-SNAPSHOT</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.mdsal</groupId>
19     <artifactId>mdsal-eos-common-api</artifactId>
20     <version>2.2.0-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22
23     <dependencyManagement>
24         <dependencies>
25             <dependency>
26                 <groupId>org.opendaylight.mdsal</groupId>
27                 <artifactId>mdsal-artifacts</artifactId>
28                 <version>2.2.0-SNAPSHOT</version>
29                 <type>pom</type>
30                 <scope>import</scope>
31             </dependency>
32             <dependency>
33                 <groupId>org.opendaylight.yangtools</groupId>
34                 <artifactId>yangtools-artifacts</artifactId>
35                 <version>1.1.0-SNAPSHOT</version>
36                 <type>pom</type>
37                 <scope>import</scope>
38             </dependency>
39         </dependencies>
40     </dependencyManagement>
41
42     <dependencies>
43         <dependency>
44             <groupId>com.google.guava</groupId>
45             <artifactId>guava</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>concepts</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>util</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools</groupId>
57             <artifactId>yang-common</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>junit</groupId>
61             <artifactId>junit</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>mockito-configuration</artifactId>
67             <scope>test</scope>
68         </dependency>
69     </dependencies>
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.maven.plugins</groupId>
74                 <artifactId>maven-checkstyle-plugin</artifactId>
75                 <configuration>
76                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
77                 </configuration>
78             </plugin>
79         </plugins>
80     </build>
81     <scm>
82         <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
83         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
84         <tag>HEAD</tag>
85         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
86     </scm>
87
88   <!--
89       Maven Site Configuration
90
91       The following configuration is necessary for maven-site-plugin to
92       correctly identify the correct deployment path for OpenDaylight Maven
93       sites.
94   -->
95   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
96
97   <distributionManagement>
98     <site>
99       <id>opendaylight-site</id>
100       <url>${nexus.site.url}/${project.artifactId}/</url>
101     </site>
102   </distributionManagement>
103
104 </project>