Remove CSS artifact remnants
[openflowplugin.git] / applications / 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
5     <parent>
6         <groupId>org.opendaylight.openflowplugin</groupId>
7         <artifactId>openflowplugin-parent</artifactId>
8         <version>0.6.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>applications</artifactId>
13     <name>applications</name>
14     <url>http://maven.apache.org</url>
15     <packaging>pom</packaging>
16
17     <build>
18         <pluginManagement>
19             <plugins>
20                 <plugin>
21                     <groupId>org.opendaylight.yangtools</groupId>
22                     <artifactId>yang-maven-plugin</artifactId>
23                     <executions>
24                         <execution>
25                             <goals>
26                                 <goal>generate-sources</goal>
27                             </goals>
28                             <configuration>
29                                 <codeGenerators>
30                                     <generator>
31                                         <codeGeneratorClass>
32                                             org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl
33                                         </codeGeneratorClass>
34                                         <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
35                                     </generator>
36                                 </codeGenerators>
37                                 <inspectDependencies>true</inspectDependencies>
38                             </configuration>
39                         </execution>
40                     </executions>
41                     <dependencies>
42                         <dependency>
43                             <groupId>org.opendaylight.mdsal</groupId>
44                             <artifactId>maven-sal-api-gen-plugin</artifactId>
45                             <version>${mdsal.model.version}</version>
46                             <type>jar</type>
47                         </dependency>
48                     </dependencies>
49                 </plugin>
50             </plugins>
51         </pluginManagement>
52         <plugins>
53             <plugin>
54                 <groupId>org.apache.felix</groupId>
55                 <artifactId>maven-bundle-plugin</artifactId>
56             </plugin>
57         </plugins>
58     </build>
59
60     <scm>
61       <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
62       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
63       <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
64       <tag>HEAD</tag>
65     </scm>
66
67     <modules>
68         <module>table-miss-enforcer</module>
69         <module>of-switch-config-pusher</module>
70         <module>lldp-speaker</module>
71         <!-- deprecated apps -->
72         <module>notification-supplier</module>
73         <!-- nsf apps -->
74         <module>topology-manager</module>
75         <module>forwardingrules-manager</module>
76         <module>forwardingrules-sync</module>
77         <module>topology-lldp-discovery</module>
78         <!-- experimental apps -->
79         <module>bulk-o-matic</module>
80         <module>reconciliation-framework</module>
81     </modules>
82
83 </project>