Merge "Add missing license notice"
[neutron.git] / transcriber / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 Intel Corporation and others. All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.neutron</groupId>
14     <artifactId>project-neutron-parent</artifactId>
15     <version>0.11.0-SNAPSHOT</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18   <groupId>org.opendaylight.neutron</groupId>
19   <artifactId>transcriber</artifactId>
20   <version>0.11.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: neutron :: ${project.artifactId}</name>
25   <properties>
26     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
27   </properties>
28
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>org.apache.aries.blueprint</groupId>
33         <artifactId>blueprint-maven-plugin</artifactId>
34       </plugin>
35     </plugins>
36   </build>
37   <dependencies>
38     <dependency>
39       <groupId>org.ops4j.pax.cdi</groupId>
40       <artifactId>pax-cdi-api</artifactId>
41       <optional>true</optional>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-binding-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.neutron</groupId>
49       <artifactId>northbound-api</artifactId>
50       <version>${project.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.neutron</groupId>
54       <artifactId>neutron-spi</artifactId>
55       <version>${project.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.neutron</groupId>
59       <artifactId>model</artifactId>
60       <version>${project.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>org.osgi</groupId>
64       <artifactId>org.osgi.core</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>javax.inject</groupId>
68       <artifactId>javax.inject</artifactId>
69     </dependency>
70   </dependencies>
71   <scm>
72     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
73     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
74     <tag>HEAD</tag>
75     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
76   </scm>
77 </project>