Merge "Add SCM section to all the poms"
[controller.git] / opendaylight / commons / concepts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
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">\r
3   <modelVersion>4.0.0</modelVersion>\r
4   <parent>\r
5     <groupId>org.opendaylight.controller</groupId>\r
6     <artifactId>commons.opendaylight</artifactId>\r
7     <version>1.4.0-SNAPSHOT</version>\r
8     <relativePath>../../commons/opendaylight</relativePath>\r
9   </parent>\r
10   <scm>\r
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>\r
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>\r
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>\r
14   </scm>\r
15 \r
16   <artifactId>concepts</artifactId>\r
17   <version>0.5.0-SNAPSHOT</version>\r
18   <packaging>bundle</packaging>\r
19 \r
20   <build>\r
21     <plugins>\r
22       <plugin>\r
23         <groupId>org.apache.felix</groupId>\r
24         <artifactId>maven-bundle-plugin</artifactId>\r
25         <version>${bundle.plugin.version}</version>\r
26         <extensions>true</extensions>\r
27         <configuration>\r
28           <instructions>\r
29             <Export-Package>\r
30               org.opendaylight.controller.concepts.transform\r
31             </Export-Package>\r
32           </instructions>\r
33           <manifestLocation>${project.basedir}/META-INF</manifestLocation>\r
34         </configuration>\r
35       </plugin>\r
36       <plugin>\r
37         <groupId>org.apache.maven.plugins</groupId>\r
38         <artifactId>maven-checkstyle-plugin</artifactId>\r
39         <version>${checkstyle.version}</version>\r
40         <dependencies>\r
41           <dependency>\r
42             <groupId>org.opendaylight.controller</groupId>\r
43             <artifactId>checkstyle</artifactId>\r
44             <version>0.0.1-SNAPSHOT</version>\r
45           </dependency>\r
46         </dependencies>\r
47         <configuration>\r
48           <failsOnError>true</failsOnError>\r
49           <configLocation>controller/space_and_tabs_checks.xml</configLocation>\r
50         </configuration>\r
51       </plugin>\r
52     </plugins>\r
53   </build>\r
54   <dependencies>\r
55     <dependency>\r
56       <groupId>junit</groupId>\r
57       <artifactId>junit</artifactId>\r
58       <version>4.8.1</version>\r
59       <scope>test</scope>\r
60     </dependency>\r
61   </dependencies>\r
62 </project>\r