27c1ef090c077676624d65136e966d9c95514c3b
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / impl / pom.xml
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 <?xml version="1.0" encoding="UTF-8"?>
5 <!-- vi: set et smarttab sw=4 tabstop=4: -->
6 <!--
7 Copyright © ${copyrightYear} ${copyright} and others. All rights reserved.
8
9 This program and the accompanying materials are made available under the
10 terms of the Eclipse Public License v1.0 which accompanies this distribution,
11 and is available at http://www.eclipse.org/legal/epl-v10.html
12 -->
13 <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">
14   <modelVersion>4.0.0</modelVersion>
15
16   <parent>
17     <groupId>org.opendaylight.controller</groupId>
18     <artifactId>config-parent</artifactId>
19     <version>0.6.0-SNAPSHOT</version>
20     <relativePath/>
21   </parent>
22
23   <groupId>${groupId}</groupId>
24   <artifactId>${artifactId}-impl</artifactId>
25   <version>${version}</version>
26   <packaging>bundle</packaging>
27
28   <dependencies>
29     <dependency>
30       <groupId>${symbol_dollar}{project.groupId}</groupId>
31       <artifactId>${artifactId}-api</artifactId>
32       <version>${symbol_dollar}{project.version}</version>
33     </dependency>
34
35     <!-- Testing Dependencies -->
36     <dependency>
37       <groupId>junit</groupId>
38       <artifactId>junit</artifactId>
39       <scope>test</scope>
40     </dependency>
41
42     <dependency>
43       <groupId>org.mockito</groupId>
44       <artifactId>mockito-all</artifactId>
45       <scope>test</scope>
46     </dependency>
47   </dependencies>
48 </project>