Split {copyright} into {copyright-year} and {copyright}
[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
15   <parent>
16     <groupId>org.opendaylight.controller</groupId>
17     <artifactId>config-parent</artifactId>
18     <version>0.4.0-SNAPSHOT</version>
19     <relativePath/>
20   </parent>
21
22   <modelVersion>4.0.0</modelVersion>
23   <groupId>${groupId}</groupId>
24   <artifactId>${artifactId}-impl</artifactId>
25   <version>${version}</version>
26   <packaging>bundle</packaging>
27   <dependencies>
28     <dependency>
29       <groupId>${symbol_dollar}{project.groupId}</groupId>
30       <artifactId>${artifactId}-api</artifactId>
31       <version>${symbol_dollar}{project.version}</version>
32     </dependency>
33
34     <!-- Testing Dependencies -->
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <scope>test</scope>
39     </dependency>
40
41     <dependency>
42       <groupId>org.mockito</groupId>
43       <artifactId>mockito-all</artifactId>
44       <scope>test</scope>
45     </dependency>
46   </dependencies>
47
48 </project>