Remove Maven site from POMs
[neutron.git] / transcriber / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.neutron</groupId>
7     <artifactId>project-neutron-parent</artifactId>
8     <version>0.10.0-SNAPSHOT</version>
9     <relativePath>../parent</relativePath>
10   </parent>
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>transcriber</artifactId>
13   <version>0.10.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <!-- <name> formatting is used by autorelease to parse and notify projects on
16        build failure. Please do not modify this unless you have a good reason. -->
17   <name>ODL :: neutron :: ${project.artifactId}</name>
18   <properties>
19     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
20   </properties>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.aries.blueprint</groupId>
26         <artifactId>blueprint-maven-plugin</artifactId>
27       </plugin>
28     </plugins>
29   </build>
30   <dependencies>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal-binding-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.neutron</groupId>
37       <artifactId>northbound-api</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.neutron</groupId>
42       <artifactId>neutron-spi</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.neutron</groupId>
47       <artifactId>model</artifactId>
48       <version>${project.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.osgi</groupId>
52       <artifactId>org.osgi.core</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>javax.inject</groupId>
56       <artifactId>javax.inject</artifactId>
57     </dependency>
58   </dependencies>
59   <scm>
60     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
61     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
62     <tag>HEAD</tag>
63     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
64   </scm>
65 </project>