Merge "Create odl-nsf-service feature, which excludes neutron feature"
[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 Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
7
8 This program and the accompanying materials are made available under the
9 terms of the Eclipse Public License v1.0 which accompanies this distribution,
10 and is available at http://www.eclipse.org/legal/epl-v10.html
11 -->
12 <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">
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.3.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <modelVersion>4.0.0</modelVersion>
22   <groupId>${groupId}</groupId>
23   <artifactId>${artifactId}-impl</artifactId>
24   <version>${version}</version>
25   <packaging>bundle</packaging>
26   <dependencies>
27     <dependency>
28       <groupId>${symbol_dollar}{project.groupId}</groupId>
29       <artifactId>${artifactId}-api</artifactId>
30       <version>${symbol_dollar}{project.version}</version>
31     </dependency>
32
33     <!-- Testing Dependencies -->
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <scope>test</scope>
38     </dependency>
39
40     <dependency>
41       <groupId>org.mockito</groupId>
42       <artifactId>mockito-all</artifactId>
43       <scope>test</scope>
44     </dependency>
45   </dependencies>
46
47 </project>