Convert sample-bundles to OSGi DS
[openflowplugin.git] / 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.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.18.0-SNAPSHOT</version>
8         <relativePath>parent</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin-aggregator</artifactId>
12     <version>0.18.0-SNAPSHOT</version>
13     <name>openflowplugin</name> <!-- Used by Sonar to set project name -->
14     <packaging>pom</packaging>
15
16     <scm>
17         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
18         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
19         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
20         <tag>HEAD</tag>
21     </scm>
22
23     <modules>
24         <module>artifacts</module>
25         <module>parent</module>
26         <module>libraries</module>
27         <module>openflowjava</module>
28         <module>openflowplugin-api</module>
29         <module>openflowplugin</module>
30         <module>openflowplugin-impl</module>
31         <module>openflowplugin-common</module>
32         <module>extension</module>
33         <module>openflowplugin-blueprint-config</module>
34         <!-- <module>openflowplugin-it</module> -->
35         <module>test-provider</module>
36         <module>drop-test-karaf</module>
37         <module>test-common</module>
38         <module>features-aggregator</module>
39         <module>applications</module>
40         <module>model</module>
41         <module>samples</module>
42     </modules>
43
44     <profiles>
45         <profile>
46             <id>karaf</id>
47             <activation>
48                 <activeByDefault>true</activeByDefault>
49             </activation>
50             <modules>
51                 <module>distribution/karaf</module>
52             </modules>
53         </profile>
54     </profiles>
55
56     <build>
57         <pluginManagement>
58             <plugins>
59                 <plugin>
60                     <groupId>org.apache.maven.plugins</groupId>
61                     <artifactId>maven-javadoc-plugin</artifactId>
62                     <!-- https://issues.apache.org/jira/browse/MJAVADOC-649 -->
63                     <version>3.1.1</version>
64                 </plugin>
65             </plugins>
66         </pluginManagement>
67     </build>
68 </project>