Introducing new @Rule GuiceRule guice = new GuiceRule(*Module.class)
[odlguice.git] / inject / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>odlparent</artifactId>
8     <version>1.8.0-SNAPSHOT</version>
9     <relativePath />
10   </parent>
11
12   <groupId>org.opendaylight.infrautils</groupId>
13   <artifactId>inject</artifactId>
14   <version>1.1.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.maven.plugins</groupId>
21         <artifactId>maven-checkstyle-plugin</artifactId>
22         <configuration>
23           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
24         </configuration>
25       </plugin>
26       <plugin>
27         <groupId>org.apache.felix</groupId>
28         <artifactId>maven-bundle-plugin</artifactId>
29         <extensions>true</extensions>
30         <configuration>
31           <instructions>
32             <Export-Package>
33               org.opendaylight.infrautils.inject
34             </Export-Package>
35           </instructions>
36         </configuration>
37       </plugin>
38     </plugins>
39   </build>
40
41   <dependencies>
42     <dependency>
43       <groupId>javax.inject</groupId>
44       <artifactId>javax.inject</artifactId>
45     </dependency>
46
47     <dependency>
48       <groupId>junit</groupId>
49       <artifactId>junit</artifactId>
50     </dependency>
51     <dependency>
52         <groupId>com.google.truth</groupId>
53         <artifactId>truth</artifactId>
54     </dependency>
55   </dependencies>
56
57 </project>