6113fcce4792af907f90d09dce010bb02c5908ab
[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   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>concepts</artifactId>
18   <version>0.5.2-SNAPSHOT</version>
19   <packaging>bundle</packaging>
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>
31               org.opendaylight.controller.concepts.transform
32             </Export-Package>
33           </instructions>
34           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
35         </configuration>
36       </plugin>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-checkstyle-plugin</artifactId>
40         <version>${checkstyle.version}</version>
41         <dependencies>
42           <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>checkstyle</artifactId>
45             <version>0.0.3-SNAPSHOT</version>
46           </dependency>
47         </dependencies>
48         <configuration>
49           <failsOnError>true</failsOnError>
50           <configLocation>controller/checkstyle.xml</configLocation>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55   <dependencies>
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59     </dependency>
60   </dependencies>
61 </project>