Assign image keyname and pubkey at vnf level
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / devicemanager / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 Wipro Ltd. All rights reserved. This program and
3     the accompanying materials are made available under the terms of the Eclipse
4     Public License v1.0 which accompanies this distribution, and is available
5     at http://www.eclipse.org/legal/epl-v10.html INTERNAL -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9
10     <parent>
11         <groupId>org.opendaylight.odlparent</groupId>
12         <artifactId>odlparent</artifactId>
13         <version>1.8.1-Carbon</version>
14         <relativePath />
15     </parent>
16
17     <groupId>org.opendaylight.mwtn</groupId>
18     <artifactId>devicemanager</artifactId>
19     <name>devicemanager</name>
20     <version>0.5.1-SNAPSHOT</version>
21     <packaging>pom</packaging>
22
23     <modules>
24         <module>api</module>
25         <module>impl</module>
26     </modules>
27
28     <build>
29         <plugins>
30             <plugin>
31                 <groupId>org.apache.maven.plugins</groupId>
32                 <artifactId>maven-deploy-plugin</artifactId>
33                 <configuration>
34                     <skip>true</skip>
35                 </configuration>
36             </plugin>
37             <plugin>
38                 <groupId>org.apache.maven.plugins</groupId>
39                 <artifactId>maven-install-plugin</artifactId>
40                 <configuration>
41                     <skip>true</skip>
42                 </configuration>
43             </plugin>
44             <plugin>
45                 <groupId>org.apache.maven.plugins</groupId>
46                 <artifactId>maven-compiler-plugin</artifactId>
47                 <configuration>
48                     <source>1.8</source>
49                     <target>1.8</target>
50                 </configuration>
51             </plugin>
52         </plugins>
53     </build>
54 </project>
55