Release odlguice
[odlguice.git] / inject / inject / pom.xml
1 <?xml version="1.0"?>
2 <!--
3  Copyright (c) 2016 Red Hat, 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
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</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   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.felix</groupId>
29         <artifactId>maven-bundle-plugin</artifactId>
30         <extensions>true</extensions>
31         <configuration>
32           <instructions>
33             <!-- TODO remove this; it should do this by default? -->
34             <Export-Package>
35               org.opendaylight.odlguice.inject
36             </Export-Package>
37           </instructions>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42
43   <dependencies>
44     <dependency>
45       <groupId>javax.inject</groupId>
46       <artifactId>javax.inject</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>javax.annotation</groupId>
50       <artifactId>javax.annotation-api</artifactId>
51       <optional>true</optional>
52     </dependency>
53     <dependency>
54       <groupId>io.github.classgraph</groupId>
55       <artifactId>classgraph</artifactId>
56     </dependency>
57   </dependencies>
58 </project>