Merge "use maven-blueprint-plugin"
[neutron.git] / neutron-hostconfig / ovs / 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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-parent</artifactId>
7     <version>0.7.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-hostconfig-ovs</artifactId>
13   <version>0.9.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     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
20   </properties>
21   <dependencyManagement>
22     <dependencies>
23       <dependency>
24         <groupId>org.opendaylight.mdsal.model</groupId>
25         <artifactId>mdsal-model-artifacts</artifactId>
26         <version>0.11.0-SNAPSHOT</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.neutron</groupId>
35       <artifactId>neutron-spi</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.neutron</groupId>
40       <artifactId>model</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.ovsdb</groupId>
45       <artifactId>utils.mdsal-utils</artifactId>
46       <version>1.5.0-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.ovsdb</groupId>
50       <artifactId>utils.southbound-utils</artifactId>
51       <version>1.5.0-SNAPSHOT</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.neutron</groupId>
55       <artifactId>neutron-hostconfig-utils</artifactId>
56       <version>${project.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.osgi</groupId>
60       <artifactId>org.osgi.core</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.slf4j</groupId>
64       <artifactId>slf4j-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>javax.inject</groupId>
68       <artifactId>javax.inject</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>config-api</artifactId>
73       <version>0.7.0-SNAPSHOT</version>
74     </dependency>
75   </dependencies>
76   <build>
77     <plugins>
78       <plugin>
79         <artifactId>maven-checkstyle-plugin</artifactId>
80         <configuration>
81           <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
82           <consoleOutput>true</consoleOutput>
83           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
84         </configuration>
85         <executions>
86           <execution>
87             <goals>
88               <goal>check</goal>
89             </goals>
90             <phase>process-sources</phase>
91           </execution>
92         </executions>
93       </plugin>
94       <plugin>
95         <groupId>org.apache.maven.plugins</groupId>
96         <artifactId>maven-compiler-plugin</artifactId>
97         <inherited>true</inherited>
98         <configuration>
99           <compilerArgs>
100             <arg>-Xlint:unchecked</arg>
101             <arg>-Xlint:deprecation</arg>
102           </compilerArgs>
103         </configuration>
104       </plugin>
105       <plugin>
106         <groupId>org.apache.aries.blueprint</groupId>
107         <artifactId>blueprint-maven-plugin</artifactId>
108       </plugin>
109     </plugins>
110   </build>
111   <scm>
112     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
113     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
114     <tag>HEAD</tag>
115     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
116   </scm>
117   <distributionManagement>
118     <!-- Site deployment -->
119     <site>
120       <id>opendaylight-site</id>
121       <url>${nexus.site.url}/${project.artifactId}/</url>
122     </site>
123   </distributionManagement>
124
125   <!--
126       Maven Site Configuration
127
128       The following configuration is necessary for maven-site-plugin to
129       correctly identify the correct deployment path for OpenDaylight Maven
130       sites.
131   -->
132   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
133 </project>