d956641dd3a2754d3df8dcb359cd788e6317f8bc
[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         <configuration>
35           <scanPaths>
36             <!-- This is required so that the @Singleton @Inject annotations used in northbound-api,
37                  which is a dependency of this project JUST for its BadRequestException, do not cause
38                  the autowire.xml generated in this project to include the <bean> etc. of northbound-api
39                  to be repeated (which would be wrong and causes e.g. "Unresolved ref/idref to component: webContextSecurer");
40                  see also https://wiki.opendaylight.org/view/BestPractices/DI_Guidelines#Nota_Bene for more background about this.
41                  A better solution may be to move the BadRequestException to a new artifact ("common" ?), or perhaps, seeing that it
42                  extends javax.ws.rs.WebApplicationException, make transcriber have its own Exception to be independent of JAX WS.  -->
43             <scanPath>org.opendaylight.neutron.transcriber</scanPath>
44           </scanPaths>
45         </configuration>
46       </plugin>
47     </plugins>
48   </build>
49   <dependencies>
50     <dependency>
51       <groupId>org.ops4j.pax.cdi</groupId>
52       <artifactId>pax-cdi-api</artifactId>
53       <optional>true</optional>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-binding-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.neutron</groupId>
61       <artifactId>northbound-api</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.neutron</groupId>
66       <artifactId>neutron-spi</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.neutron</groupId>
71       <artifactId>model</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>javax.inject</groupId>
76       <artifactId>javax.inject</artifactId>
77     </dependency>
78   </dependencies>
79   <scm>
80     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
82     <tag>HEAD</tag>
83     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
84   </scm>
85 </project>