Merge "bug 741 - Make sure to stop threads on bundle stop on TopologyServiceShim"
[controller.git] / opendaylight / commons / concepts / 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>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>concepts</artifactId>
12   <version>0.5.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19   </dependencies>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Export-Package>org.opendaylight.controller.concepts.transform</Export-Package>
31           </instructions>
32           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
33         </configuration>
34       </plugin>
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-checkstyle-plugin</artifactId>
38         <version>${checkstyle.version}</version>
39         <configuration>
40           <failsOnError>true</failsOnError>
41           <configLocation>controller/checkstyle.xml</configLocation>
42         </configuration>
43         <dependencies>
44           <dependency>
45             <groupId>org.opendaylight.controller</groupId>
46             <artifactId>checkstyle</artifactId>
47             <version>0.0.3-SNAPSHOT</version>
48           </dependency>
49         </dependencies>
50       </plugin>
51     </plugins>
52   </build>
53   <scm>
54     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
55     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
56     <tag>HEAD</tag>
57     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
58   </scm>
59 </project>