Release odlguice
[odlguice.git] / common / artifacts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Hewlett Packard Enterprise, Co. 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" 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">
11     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14       <groupId>org.opendaylight.odlparent</groupId>
15       <artifactId>odlparent-lite</artifactId>
16       <version>7.0.3</version>
17       <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.odlguice</groupId>
21     <artifactId>odlguice-artifacts</artifactId>
22     <version>1.0.0</version>
23     <packaging>pom</packaging>
24     <!-- <name> formatting is used by autorelease to parse and notify projects on
25          build failure. Please do not modify this unless you have a good reason. -->
26     <name>ODL :: odlguice :: ${project.artifactId}</name>
27
28     <dependencyManagement>
29         <dependencies>
30             <!-- APIs & runtime utilities -->
31             <dependency>
32               <groupId>${project.groupId}</groupId>
33               <artifactId>inject</artifactId>
34               <version>${project.version}</version>
35             </dependency>
36             <dependency>
37               <groupId>${project.groupId}</groupId>
38               <artifactId>inject.guice</artifactId>
39               <version>${project.version}</version>
40             </dependency>
41             <dependency>
42               <groupId>${project.groupId}</groupId>
43               <artifactId>inject.guice.extensions.jsr250</artifactId>
44               <version>${project.version}</version>
45             </dependency>
46             <dependency>
47               <groupId>${project.groupId}</groupId>
48               <artifactId>inject.guice.extensions.injection</artifactId>
49               <version>${project.version}</version>
50             </dependency>
51             <dependency>
52               <groupId>${project.groupId}</groupId>
53               <artifactId>inject.guice.extensions.closeable</artifactId>
54               <version>${project.version}</version>
55             </dependency>
56
57             <!-- Test utilities -->
58             <dependency>
59               <groupId>${project.groupId}</groupId>
60               <artifactId>inject.guice.testutils</artifactId>
61               <version>${project.version}</version>
62               <scope>test</scope>
63             </dependency>
64             
65             <!-- Karaf features -->
66             <dependency>
67                 <groupId>${project.groupId}</groupId>
68                 <artifactId>odl-odlguice-inject</artifactId>
69                 <version>${project.version}</version>
70                 <type>xml</type>
71                 <classifier>features</classifier>
72             </dependency>
73         </dependencies>
74     </dependencyManagement>
75
76   <!--
77       Maven Site Configuration
78
79       The following configuration is necessary for maven-site-plugin to
80       correctly identify the correct deployment path for OpenDaylight Maven
81       sites.
82   -->
83   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
84
85   <distributionManagement>
86     <site>
87       <id>opendaylight-site</id>
88       <url>${nexus.site.url}/${project.artifactId}/</url>
89     </site>
90   </distributionManagement>
91 </project>