Release aaa
[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.18.4</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>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>javax.servlet</groupId>
26       <artifactId>javax.servlet-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.eclipse.jdt</groupId>
30       <artifactId>org.eclipse.jdt.annotation</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.osgi</groupId>
34       <artifactId>org.osgi.service.component.annotations</artifactId>
35     </dependency>
36   </dependencies>
37
38   <build>
39     <plugins>
40       <plugin>
41         <groupId>org.apache.felix</groupId>
42         <artifactId>maven-bundle-plugin</artifactId>
43         <extensions>true</extensions>
44         <configuration>
45           <instructions>
46             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
47             <DynamicImport-Package>*</DynamicImport-Package>
48           </instructions>
49         </configuration>
50       </plugin>
51       <plugin>
52         <groupId>org.codehaus.mojo</groupId>
53         <artifactId>build-helper-maven-plugin</artifactId>
54         <executions>
55           <execution>
56             <id>attach-artifacts</id>
57             <phase>package</phase>
58             <goals>
59               <goal>attach-artifact</goal>
60             </goals>
61             <configuration>
62               <artifacts>
63                 <artifact>
64                   <file>${project.build.directory}/classes/filterchain.cfg</file>
65                   <type>cfg</type>
66                   <classifier>config</classifier>
67                 </artifact>
68               </artifacts>
69             </configuration>
70           </execution>
71         </executions>
72       </plugin>
73     </plugins>
74   </build>
75 </project>