Merge "Add missing copyright text"
[controller.git] / opendaylight / commons / enunciate-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  copyright (c) 2015 cisco systems, inc. and others.  all rights reserved.
5
6  this program and the accompanying materials are made available under the
7  terms of the eclipse public license v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <parent>
14         <groupId>org.opendaylight.controller</groupId>
15         <artifactId>commons.opendaylight</artifactId>
16         <version>1.6.0-SNAPSHOT</version>
17         <relativePath>../opendaylight</relativePath>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <artifactId>enunciate-parent</artifactId>
22     <packaging>pom</packaging>
23
24     <!-- enunciate plugin does not work with JDK8 onwards -->
25     <profiles>
26         <profile>
27             <id>non-java8</id>
28             <activation>
29                 <jdk>1.7</jdk>
30             </activation>
31             <build>
32                 <plugins>
33                     <plugin>
34                         <groupId>org.codehaus.enunciate</groupId>
35                         <artifactId>maven-enunciate-plugin</artifactId>
36                     </plugin>
37                 </plugins>
38             </build>
39         </profile>
40     </profiles>
41 </project>
42