Bump to odlparent-5.0.5 and yangtools-3.0.9
[mdsal.git] / binding / binding-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.mdsal</groupId>
14         <artifactId>dom-parent</artifactId>
15         <version>4.0.10-SNAPSHOT</version>
16         <relativePath>../../dom/dom-parent</relativePath>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>binding-parent</artifactId>
21     <packaging>pom</packaging>
22
23     <properties>
24         <salGeneratorPath>${project.build.directory}/generated-sources/mdsal-binding</salGeneratorPath>
25     </properties>
26
27     <build>
28         <!-- https://bugs.opendaylight.org/show_bug.cgi?id=6252 -->
29         <resources>
30             <resource>
31                 <directory>src/main/resources</directory>
32             </resource>
33             <resource>
34                 <directory>${project.build.directory}/generated-sources/spi</directory>
35             </resource>
36             <resource>
37                 <directory>${project.build.directory}/generated-sources/yang</directory>
38             </resource>
39         </resources>
40     </build>
41
42     <profiles>
43         <profile>
44             <activation>
45                 <file>
46                     <exists>src/main/yang</exists>
47                 </file>
48             </activation>
49             <dependencies>
50                 <dependency>
51                     <groupId>org.opendaylight.mdsal</groupId>
52                     <artifactId>yang-binding</artifactId>
53                 </dependency>
54             </dependencies>
55             <build>
56                 <pluginManagement>
57                     <plugins>
58                         <plugin>
59                             <groupId>org.opendaylight.yangtools</groupId>
60                             <artifactId>yang-maven-plugin</artifactId>
61                             <version>3.0.9</version>
62                             <dependencies>
63                                 <dependency>
64                                     <groupId>org.opendaylight.mdsal</groupId>
65                                     <artifactId>maven-sal-api-gen-plugin</artifactId>
66                                     <version>2.0.10-SNAPSHOT</version>
67                                     <type>jar</type>
68                                 </dependency>
69                             </dependencies>
70                             <executions>
71                                 <execution>
72                                     <id>binding</id>
73                                     <goals>
74                                         <goal>generate-sources</goal>
75                                     </goals>
76                                     <configuration>
77                                         <codeGenerators>
78                                             <generator>
79                                                 <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
80                                                 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
81                                                 <resourceBaseDir>${project.build.directory}/generated-sources/spi</resourceBaseDir>
82                                             </generator>
83                                         </codeGenerators>
84                                         <inspectDependencies>true</inspectDependencies>
85                                     </configuration>
86                                 </execution>
87                             </executions>
88                         </plugin>
89                         <plugin>
90                             <artifactId>maven-clean-plugin</artifactId>
91                             <configuration>
92                                 <filesets>
93                                     <fileset>
94                                         <directory>${salGeneratorPath}</directory>
95                                         <includes>
96                                             <include>**</include>
97                                         </includes>
98                                     </fileset>
99                                 </filesets>
100                             </configuration>
101                         </plugin>
102                         <plugin>
103                             <groupId>org.codehaus.mojo</groupId>
104                             <artifactId>build-helper-maven-plugin</artifactId>
105                             <executions>
106                                 <execution>
107                                     <id>add-yang-sources</id>
108                                     <phase>generate-sources</phase>
109                                     <goals>
110                                         <goal>add-source</goal>
111                                     </goals>
112                                     <configuration>
113                                         <sources>
114                                             <source>${salGeneratorPath}</source>
115                                         </sources>
116                                     </configuration>
117                                 </execution>
118                             </executions>
119                         </plugin>
120
121                         <!-- This has to match the definition in odlparent and exists only
122                              because for some reason PMD does not understand wildcards. -->
123                         <plugin>
124                             <groupId>org.apache.maven.plugins</groupId>
125                             <artifactId>maven-pmd-plugin</artifactId>
126                             <executions>
127                                 <execution>
128                                     <id>cpd</id>
129                                     <phase>process-sources</phase>
130                                     <goals>
131                                         <goal>cpd-check</goal>
132                                     </goals>
133                                     <configuration>
134                                         <excludeRoots>
135                                             <excludeRoot>${salGeneratorPath}</excludeRoot>
136                                         </excludeRoots>
137                                     </configuration>
138                                 </execution>
139                             </executions>
140                         </plugin>
141                     </plugins>
142                 </pluginManagement>
143                 <plugins>
144                     <plugin>
145                         <groupId>org.opendaylight.yangtools</groupId>
146                         <artifactId>yang-maven-plugin</artifactId>
147                     </plugin>
148                     <plugin>
149                         <groupId>org.codehaus.mojo</groupId>
150                         <artifactId>build-helper-maven-plugin</artifactId>
151                     </plugin>
152                 </plugins>
153             </build>
154         </profile>
155     </profiles>
156 </project>