Migrate to odlparent 1.9.0
[odlguice.git] / inject-guice-testutils / pom.xml
1 <!--
2  Copyright (c) 2016 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.odlparent</groupId>
14     <artifactId>odlparent</artifactId>
15     <version>1.9.0</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.infrautils</groupId>
20   <artifactId>inject.guice.testutils</artifactId>
21   <version>1.2.0-SNAPSHOT</version>
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 :: infrautils :: ${project.artifactId}</name>
25
26   <build>
27     <plugins>
28       <plugin>
29         <groupId>org.apache.maven.plugins</groupId>
30         <artifactId>maven-checkstyle-plugin</artifactId>
31         <configuration>
32           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
33         </configuration>
34       </plugin>
35     </plugins>
36   </build>
37
38   <dependencies>
39     <dependency>
40       <groupId>javax.inject</groupId>
41       <artifactId>javax.inject</artifactId>
42       <!-- Important to enforce false because in odlparent it's true (see gerrit/c/56723) -->
43       <optional>false</optional>
44     </dependency>
45     <dependency>
46       <groupId>junit</groupId>
47       <artifactId>junit</artifactId>
48       <scope>compile</scope>
49     </dependency>
50     <dependency>
51       <groupId>com.mycila.guice.extensions</groupId>
52       <artifactId>mycila-guice-jsr250</artifactId>
53       <scope>compile</scope>
54     </dependency>
55     <dependency>
56       <groupId>com.google.inject</groupId>
57       <artifactId>guice</artifactId>
58       <scope>compile</scope>
59     </dependency>
60     <dependency>
61       <groupId>com.google.truth</groupId>
62       <artifactId>truth</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.infrautils</groupId>
66       <artifactId>inject</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69   </dependencies>
70 </project>