Migrate to odlparent 2.0.2
[odlguice.git] / inject / 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>2.0.2</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.infrautils</groupId>
20   <artifactId>inject</artifactId>
21   <version>1.2.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: infrautils :: ${project.artifactId}</name>
26
27   <build>
28     <plugins>
29       <plugin>
30         <groupId>org.apache.maven.plugins</groupId>
31         <artifactId>maven-checkstyle-plugin</artifactId>
32         <configuration>
33           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
34         </configuration>
35       </plugin>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <extensions>true</extensions>
40         <configuration>
41           <instructions>
42             <Export-Package>
43               org.opendaylight.infrautils.inject
44             </Export-Package>
45           </instructions>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50
51   <dependencies>
52     <dependency>
53       <groupId>javax.inject</groupId>
54       <artifactId>javax.inject</artifactId>
55     </dependency>
56
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60     </dependency>
61     <dependency>
62         <groupId>com.google.truth</groupId>
63         <artifactId>truth</artifactId>
64     </dependency>
65   </dependencies>
66
67 </project>