Release odlguice
[odlguice.git] / inject / inject-guice / pom.xml
1 <!--
2  Copyright (c) 2018 Red Hat, Inc. and others. All rights reserved.
3
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   <parent>
13       <groupId>org.opendaylight.odlguice</groupId>
14       <artifactId>parent</artifactId>
15       <version>1.0.0</version>
16       <relativePath>../../common/parent</relativePath>
17   </parent>
18
19   <artifactId>inject.guice</artifactId>
20   <packaging>bundle</packaging>
21   <!-- <name> formatting is used by autorelease to parse and notify projects on
22        build failure. Please do not modify this unless you have a good reason. -->
23   <name>ODL :: odlguice :: ${project.artifactId}</name>
24
25   <dependencies>
26     <dependency>
27       <groupId>javax.annotation</groupId>
28       <artifactId>javax.annotation-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>javax.inject</groupId>
32       <artifactId>javax.inject</artifactId>
33       <!-- Important to enforce false because in odlparent it's true (see gerrit/c/56723) -->
34       <optional>false</optional>
35     </dependency>
36     <dependency>
37       <groupId>com.google.inject</groupId>
38       <artifactId>guice</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.odlguice</groupId>
42       <artifactId>inject</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.odlguice</groupId>
47       <artifactId>inject.guice.testutils</artifactId>
48       <version>${project.version}</version>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.odlguice</groupId>
53       <artifactId>inject.guice.extensions.jsr250</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56   </dependencies>
57 </project>