Bump error-prone to 2.28.0
[infrautils.git] / samples / sample-async / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <parent>
5         <groupId>org.opendaylight.odlparent</groupId>
6         <artifactId>odlparent</artifactId>
7         <version>1.8.0-SNAPSHOT</version>
8         <relativePath/>
9     </parent>
10     <groupId>org.opendaylight.infrautils</groupId>
11     <artifactId>samples-async-impl</artifactId>
12     <packaging>bundle</packaging>
13     <modelVersion>4.0.0</modelVersion>
14     <version>1.1.0-SNAPSHOT</version>
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20                 <extensions>true</extensions>
21                 <configuration>
22                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
23                 </configuration>
24             </plugin>
25             <plugin>
26                 <groupId>org.apache.maven.plugins</groupId>
27                 <artifactId>maven-compiler-plugin</artifactId>
28                 <configuration>
29                     <source>1.8</source>
30                     <target>1.8</target>
31                 </configuration>
32             </plugin>
33         </plugins>
34     </build>
35     <dependencies>
36         <dependency>
37             <groupId>org.opendaylight.infrautils</groupId>
38             <artifactId>async-api</artifactId>
39             <version>${project.version}</version>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.infrautils</groupId>
43             <artifactId>async-impl</artifactId>
44             <version>${project.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.infrautils</groupId>
48             <artifactId>infrautils-util</artifactId>
49             <version>${project.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.infrautils</groupId>
53             <artifactId>counters-api</artifactId>
54             <version>${project.version}</version>
55         </dependency>
56         <dependency>
57             <groupId>org.osgi</groupId>
58             <artifactId>org.osgi.core</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.osgi</groupId>
62             <artifactId>org.osgi.enterprise</artifactId>
63             <version>${osgi.core.version}</version>
64         </dependency>
65     </dependencies>
66 </project>