Fix JDK11/docs compilation
[aaa.git] / aaa-filterchain / pom.xml
1 <?xml version="1.0"?>
2 <!-- Copyright (c) 2015 Brocade Communications Systems, Inc. and others.
3   All rights reserved. This program and the accompanying materials are made
4   available under the terms of the Eclipse Public License v1.0 which accompanies
5   this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <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">
7   <modelVersion>4.0.0</modelVersion>
8   <parent>
9     <groupId>org.opendaylight.aaa</groupId>
10     <artifactId>aaa-parent</artifactId>
11     <version>0.10.0-SNAPSHOT</version>
12     <relativePath>../parent</relativePath>
13   </parent>
14
15   <artifactId>aaa-filterchain</artifactId>
16   <name>ODL :: aaa :: ${project.artifactId}</name>
17   <packaging>bundle</packaging>
18
19   <dependencies>
20     <dependency>
21       <groupId>org.apache.felix</groupId>
22       <artifactId>org.apache.felix.dependencymanager</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.osgi</groupId>
26       <artifactId>org.osgi.compendium</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.osgi</groupId>
30       <artifactId>org.osgi.core</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>javax.servlet</groupId>
34       <artifactId>javax.servlet-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>com.google.guava</groupId>
38       <artifactId>guava</artifactId>
39     </dependency>
40
41     <!-- Testing Dependencies -->
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.mockito</groupId>
49       <artifactId>mockito-core</artifactId>
50       <scope>test</scope>
51     </dependency>
52   </dependencies>
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.felix</groupId>
57         <artifactId>maven-bundle-plugin</artifactId>
58         <extensions>true</extensions>
59         <configuration>
60           <instructions>
61             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
62             <DynamicImport-Package>*</DynamicImport-Package>
63           </instructions>
64         </configuration>
65       </plugin>
66       <plugin>
67         <groupId>org.codehaus.mojo</groupId>
68         <artifactId>build-helper-maven-plugin</artifactId>
69         <executions>
70           <execution>
71             <id>attach-artifacts</id>
72             <phase>package</phase>
73             <goals>
74               <goal>attach-artifact</goal>
75             </goals>
76             <configuration>
77               <artifacts>
78                 <artifact>
79                   <file>${project.build.directory}/classes/filterchain.cfg</file>
80                   <type>cfg</type>
81                   <classifier>config</classifier>
82                 </artifact>
83               </artifacts>
84             </configuration>
85           </execution>
86         </executions>
87       </plugin>
88     </plugins>
89   </build>
90 </project>