Bump versions by x.(y+1).z for next dev cycle
[aaa.git] / web / impl-jetty / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2018 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"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.aaa</groupId>
15     <artifactId>aaa-parent</artifactId>
16     <version>0.9.0-SNAPSHOT</version>
17     <relativePath>../../parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.aaa.web</groupId>
21   <artifactId>web-jetty-impl</artifactId>
22   <version>0.9.0-SNAPSHOT</version>
23   <name>ODL :: aaa :: ${project.artifactId}</name>
24   <packaging>bundle</packaging>
25
26   <properties>
27     <!-- Find duplicates on Classpath, to avoid Jetty version conflicts -->
28     <duplicate-finder.skip>false</duplicate-finder.skip>
29   </properties>
30
31   <dependencies>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>web-api</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37
38     <dependency>
39       <groupId>org.eclipse.jetty</groupId>
40       <artifactId>jetty-webapp</artifactId>
41     </dependency>
42
43     <dependency>
44       <groupId>com.google.guava</groupId>
45       <artifactId>guava</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>javax.inject</groupId>
49       <artifactId>javax.inject</artifactId>
50       <optional>true</optional>
51     </dependency>
52
53     <dependency>
54       <groupId>com.google.truth</groupId>
55       <artifactId>truth</artifactId>
56     </dependency>
57   </dependencies>
58 </project>