Assign image keyname and pubkey at vnf level
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / commons / config-parent / 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         <parent>
9                 <groupId>org.opendaylight.controller</groupId>
10                 <artifactId>config-parent</artifactId>
11                 <version>0.6.1-Carbon</version>
12                 <relativePath />
13         </parent>
14
15         <modelVersion>4.0.0</modelVersion>
16         <groupId>org.opendaylight.mwtn</groupId>
17         <artifactId>config-parent</artifactId>
18         <version>0.5.1-SNAPSHOT</version>
19         <name>ONF :: Wireless :: ${project.artifactId}</name>
20         <packaging>pom</packaging>
21
22         <properties>
23                 <mdsal.model.version>0.10.1-Carbon</mdsal.model.version>
24                 <mdsal.version>1.5.1-Carbon</mdsal.version>
25                 <restconf.version>1.5.1-Carbon</restconf.version>
26                 <yangtools.version>1.1.1-Carbon</yangtools.version>
27                 <dlux.version>0.5.1-Carbon</dlux.version>
28                 <netconf.version>1.2.1-Carbon</netconf.version>
29                 <openflow.plugin.version>0.4.1-Carbon</openflow.plugin.version> 
30                 <l2switch.version>0.5.1-Carbon</l2switch.version>
31                 <checkstyle.skip>true</checkstyle.skip>
32                 <console.version>3.0.1</console.version>
33         <!--    <yang.ext.version>2013.09.07.9.3-Boron-SR3</yang.ext.version>-->
34                 <ietf.topology.version>2013.10.21.10.3-Carbon</ietf.topology.version>
35                 <prefix>ONF :: Wireless :: </prefix>
36                 <netty.version>4.1.7.Final</netty.version>
37                 <jackson.version>2.3.2</jackson.version>
38         </properties>
39         
40
41         <dependencies>
42                 <dependency>
43                         <groupId>junit</groupId>
44                         <artifactId>junit</artifactId>
45                         <scope>test</scope>
46                 </dependency>
47
48                 <dependency>
49                         <groupId>org.mockito</groupId>
50                         <artifactId>mockito-core</artifactId>
51                         <scope>test</scope>
52                 </dependency>
53         </dependencies>
54
55         <build>
56                 <plugins>
57                         <plugin>
58                                 <groupId>org.apache.maven.plugins</groupId>
59                                 <artifactId>maven-checkstyle-plugin</artifactId>
60                                 <executions>
61                                         <execution>
62                                                 <phase>process-sources</phase>
63                                                 <goals>
64                                                         <goal>check</goal>
65                                                 </goals>
66                                         </execution>
67                                 </executions>
68                                 <configuration>
69                                         <configLocation>
70                                                 ${project.basedir}/../../commons/src/main/resources/checks.xml
71                                         </configLocation>
72                                         <failsOnError>true</failsOnError>
73                                         <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
74                                         <excludes>**\/target\/,**\/bin\/,**\/third-party,**\/yang-gen-sal</excludes>
75                                 </configuration>
76                         </plugin>
77                         <plugin>
78                                 <groupId>org.jacoco</groupId>
79                                 <artifactId>jacoco-maven-plugin</artifactId>
80                                 <configuration>
81                                         <includes>
82                                                 <include>org.opendaylight.atrium.*</include>
83                                         </includes>
84                                 </configuration>
85                                 <executions>
86                                         <execution>
87                                                 <id>pre-test</id>
88                                                 <goals>
89                                                         <goal>prepare-agent</goal>
90                                                 </goals>
91                                         </execution>
92                                         <execution>
93                                                 <id>post-test</id>
94                                                 <goals>
95                                                         <goal>report</goal>
96                                                 </goals>
97                                                 <phase>test</phase>
98                                         </execution>
99                                 </executions>
100                         </plugin>
101                 </plugins>
102         </build>
103 </project>