Merge "Workaround for sqlite wrapping issue in Karaf 3.0.3."
[aaa.git] / aaa-authz / aaa-authz-restconf-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>aaa-authz</artifactId>
7         <groupId>org.opendaylight.aaa</groupId>
8         <version>0.2.0-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>authz-restconf-config</artifactId>
13
14     <description>AuthZ Restconf Connector Configuration file </description>
15     <packaging>jar</packaging>
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.codehaus.mojo</groupId>
20                 <artifactId>build-helper-maven-plugin</artifactId>
21                 <executions>
22                     <execution>
23                         <id>attach-artifacts</id>
24                         <goals>
25                             <goal>attach-artifact</goal>
26                         </goals>
27                         <phase>package</phase>
28                         <configuration>
29                             <artifacts>
30                                 <artifact>
31                                     <file>${project.build.directory}/classes/initial/${config.restconf.configfile}</file>
32                                     <type>xml</type>
33                                      <classifier>config</classifier>
34                                 </artifact>
35                             </artifacts>
36                         </configuration>
37                     </execution>
38                 </executions>
39             </plugin>
40         </plugins>
41     </build>
42 </project>