99b6a10166b826fb46449e31fbc365b10e96b8a8
[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   <!-- <name> formatting is used by autorelease to parse and notify projects on
27        build failure. Please do not modify this unless you have a good reason. -->
28   <name>ODL :: ${groupId} :: ${project.artifactId}</name>
29   <packaging>bundle</packaging>
30
31   <dependencies>
32     <dependency>
33       <groupId>${symbol_dollar}{project.groupId}</groupId>
34       <artifactId>${artifactId}-api</artifactId>
35       <version>${symbol_dollar}{project.version}</version>
36     </dependency>
37
38     <!-- Testing Dependencies -->
39     <dependency>
40       <groupId>junit</groupId>
41       <artifactId>junit</artifactId>
42       <scope>test</scope>
43     </dependency>
44
45     <dependency>
46       <groupId>org.mockito</groupId>
47       <artifactId>mockito-core</artifactId>
48       <scope>test</scope>
49     </dependency>
50   </dependencies>
51 </project>