make PaxWebServer ServiceFactory fail instead of return bogus WebServer
[aaa.git] / aaa-shiro-act / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 Brocade Communications Systems and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent</artifactId>
14     <version>3.0.2</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.aaa</groupId>
19   <artifactId>aaa-shiro-act-aggregator</artifactId>
20   <version>0.8.0-SNAPSHOT</version>
21   <name>ODL :: aaa :: ${project.artifactId}</name>
22   <packaging>pom</packaging>
23
24   <scm>
25     <connection>scm:git:ssh://git.opendaylight.org:29418/aaa-shiro-act.git</connection>
26     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/aaa-shiro-act.git</developerConnection>
27     <tag>HEAD</tag>
28     <url>https://wiki.opendaylight.org/view/aaa-shiro-act:Main</url>
29   </scm>
30
31   <modules>
32     <module>impl</module>
33   </modules>
34
35   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
36   <build>
37     <plugins>
38       <plugin>
39         <groupId>org.apache.maven.plugins</groupId>
40         <artifactId>maven-deploy-plugin</artifactId>
41         <configuration>
42           <skip>true</skip>
43         </configuration>
44       </plugin>
45       <plugin>
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-install-plugin</artifactId>
48         <configuration>
49           <skip>true</skip>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54
55   <profiles>
56     <profile>
57       <!--
58           This profile is to ensure we only build javadocs reports
59           when we plan to deploy Maven site for our project.
60       -->
61       <id>maven-site</id>
62       <activation>
63         <file>
64           <exists>${user.dir}/deploy-site.xml</exists>
65         </file>
66       </activation>
67
68       <build>
69         <plugins>
70           <plugin>
71             <groupId>org.apache.maven.plugins</groupId>
72             <artifactId>maven-javadoc-plugin</artifactId>
73             <inherited>false</inherited>
74             <executions>
75               <execution>
76                 <id>aggregate</id>
77                 <goals>
78                   <goal>aggregate</goal>
79                 </goals>
80                 <phase>package</phase>
81             </execution>
82             </executions>
83           </plugin>
84         </plugins>
85       </build>
86     </profile>
87   </profiles>
88
89   <!--
90       Maven Site Configuration
91
92       The following configuration is necessary for maven-site-plugin to
93       correctly identify the correct deployment path for OpenDaylight Maven
94       sites.
95   -->
96   <url>${odl.site.url}/${project.groupId}/${stream}/</url>
97
98   <distributionManagement>
99     <site>
100       <id>opendaylight-site</id>
101       <url>${nexus.site.url}/</url>
102     </site>
103   </distributionManagement>
104 </project>