Remove unused interface
[openflowplugin.git] / openflowjava / 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.6.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
12     <artifactId>openflowjava-parent</artifactId>
13     <packaging>pom</packaging>
14
15     <modules>
16         <module>features-openflowjava-aggregator</module>
17         <module>openflowjava-blueprint-config</module>
18         <module>openflow-protocol-api</module>
19         <module>openflow-protocol-impl</module>
20         <module>openflow-protocol-it</module>
21         <module>openflow-protocol-spi</module>
22         <module>openflowjava-util</module>
23     </modules>
24
25     <build>
26         <plugins>
27             <plugin>
28                 <groupId>org.apache.maven.plugins</groupId>
29                 <artifactId>maven-compiler-plugin</artifactId>
30             </plugin>
31             <plugin>
32                 <artifactId>maven-source-plugin</artifactId>
33                 <executions>
34                     <execution>
35                         <id>attach-sources</id>
36                         <phase>deploy</phase>
37                         <goals>
38                             <goal>jar-no-fork</goal>
39                         </goals>
40                     </execution>
41                 </executions>
42             </plugin>
43             <plugin>
44                 <groupId>org.apache.felix</groupId>
45                 <artifactId>maven-bundle-plugin</artifactId>
46                 <extensions>true</extensions>
47                 <configuration>
48                     <instructions>
49                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
50                     </instructions>
51                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
52                 </configuration>
53             </plugin>
54             <plugin>
55                 <groupId>org.codehaus.mojo</groupId>
56                 <artifactId>build-helper-maven-plugin</artifactId>
57                 <executions>
58                     <execution>
59                         <id>add-yang-sources</id>
60                         <phase>generate-sources</phase>
61                         <goals>
62                             <goal>add-source</goal>
63                         </goals>
64                         <configuration>
65                             <sources>
66                                 <source>${salGeneratorPath}</source>
67                             </sources>
68                         </configuration>
69                     </execution>
70                 </executions>
71             </plugin>
72         </plugins>
73         <pluginManagement>
74             <plugins>
75                 <plugin>
76                     <groupId>org.codehaus.mojo</groupId>
77                     <artifactId>build-helper-maven-plugin</artifactId>
78                     <version>1.8</version>
79                     <executions>
80                         <execution>
81                             <id>add-source</id>
82                             <goals>
83                                 <goal>add-source</goal>
84                             </goals>
85                             <phase>generate-sources</phase>
86                             <configuration>
87                                 <sources>
88                                     <source>src/main/yang</source>
89                                 </sources>
90                             </configuration>
91                         </execution>
92                     </executions>
93                 </plugin>
94             </plugins>
95         </pluginManagement>
96     </build>
97     <profiles>
98         <profile>
99             <id>viewbuild</id>
100             <activation>
101                 <activeByDefault>true</activeByDefault>
102             </activation>
103             <properties>
104                 <build.suffix>${project.version}</build.suffix>
105             </properties>
106         </profile>
107         <profile>
108             <id>jenkins</id>
109             <activation>
110                 <property>
111                     <name>BUILDSUFFIX</name>
112                 </property>
113             </activation>
114             <properties>
115                 <build.suffix>${BUILDSUFFIX}</build.suffix>
116             </properties>
117         </profile>
118         <profile>
119             <id>repoBuild</id>
120             <build>
121                 <plugins>
122                     <plugin>
123                         <groupId>org.apache.maven.plugins</groupId>
124                         <artifactId>maven-javadoc-plugin</artifactId>
125                         <version>2.8.1</version>
126                         <executions>
127                             <execution>
128                                 <goals>
129                                     <goal>aggregate</goal>
130                                 </goals>
131                                 <phase>site</phase>
132                             </execution>
133                             <execution>
134                                 <id>attach-javadocs</id>
135                                 <goals>
136                                     <goal>jar</goal>
137                                 </goals>
138                             </execution>
139                         </executions>
140                     </plugin>
141                     <plugin>
142                         <groupId>org.apache.maven.plugins</groupId>
143                         <artifactId>maven-source-plugin</artifactId>
144                         <executions>
145                             <execution>
146                                 <id>attach-sources</id>
147                                 <phase>package</phase>
148                                 <goals>
149                                     <goal>jar-no-fork</goal>
150                                 </goals>
151                             </execution>
152                         </executions>
153                     </plugin>
154                 </plugins>
155             </build>
156         </profile>
157     </profiles>
158 </project>