make PaxWebServer ServiceFactory fail instead of return bogus WebServer
[aaa.git] / aaa-cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Inocybe Technology 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 INTERNAL
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
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>bundle-parent</artifactId>
15     <version>3.0.2</version>
16     <relativePath />
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.aaa</groupId>
21   <artifactId>aaa-cli</artifactId>
22   <version>0.8.0-SNAPSHOT</version>
23   <name>ODL :: aaa :: ${project.artifactId}</name>
24   <packaging>bundle</packaging>
25
26   <dependencies>
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>aaa-cert</artifactId>
30       <version>${project.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.aaa</groupId>
34       <artifactId>aaa-authn-api</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>org.apache.karaf.shell</groupId>
39       <artifactId>org.apache.karaf.shell.console</artifactId>
40       <version>${karaf.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>net.sf.ehcache</groupId>
44       <artifactId>ehcache</artifactId>
45       <version>2.8.3</version>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.aaa</groupId>
49       <artifactId>aaa-shiro</artifactId>
50       <version>${project.version}</version>
51     </dependency>
52
53     <!-- Testing Dependencies -->
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.powermock</groupId>
61       <artifactId>powermock-api-mockito</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.powermock</groupId>
66       <artifactId>powermock-module-junit4</artifactId>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-checkstyle-plugin</artifactId>
76         <configuration>
77           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82 </project>