Merge "Bug 509: Improve logging in InMemoryDataStore."
[controller.git] / third-party / org.openexi / nagasena / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14         <groupId>org.opendaylight.controller.thirdparty</groupId>
15         <artifactId>org.openexi</artifactId>
16         <version>0000.0002.0035.0-SNAPSHOT</version>
17     </parent>
18
19     <groupId>org.opendaylight.controller.thirdparty</groupId>
20     <artifactId>nagasena</artifactId>
21     <packaging>bundle</packaging>
22
23     <properties>
24         <archive>nagasena-0000.0002.0035.0.jar</archive>
25     </properties>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.codehaus.mojo</groupId>
31                 <artifactId>truezip-maven-plugin</artifactId>
32                 <executions>
33                     <execution>
34                         <id>extract</id>
35                         <goals>
36                             <goal>copy</goal>
37                         </goals>
38                         <phase>compile</phase>
39                         <configuration>
40                             <fileset>
41                                 <!-- note how the archive is treated as a normal file directory -->
42                                 <directory>${archive}</directory>
43                                 <outputDirectory>${project.build.outputDirectory}</outputDirectory>
44                                 <includes>
45                                     <include>**</include>
46                                 </includes>
47                             </fileset>
48                         </configuration>
49                     </execution>
50                 </executions>
51             </plugin>   
52             <plugin>   
53                 <groupId>org.apache.felix</groupId>
54                 <artifactId>maven-bundle-plugin</artifactId>
55                 <extensions>true</extensions>
56                 <configuration>
57                     <instructions>
58                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
59                     </instructions>
60                 </configuration>
61             </plugin>   
62         </plugins>
63     </build>
64 </project>
65