Bumping versions by 0.0.1 for next dev cycle
[mdsal.git] / binding / binding-parent / pom.xml
index 29d284b463d6b336e611c51bc8382bf1fcd21d9c..509acab99c44cb6124104e0a7117583902789ca7 100644 (file)
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>1.7.0-SNAPSHOT</version>
+        <version>1.7.1-SNAPSHOT</version>
         <relativePath/>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.opendaylight.mdsal</groupId>
     <artifactId>binding-parent</artifactId>
-    <version>0.9.0-SNAPSHOT</version>
+    <version>0.9.1-SNAPSHOT</version>
     <packaging>pom</packaging>
 
     <properties>
-        <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
-        <mdsal.version>2.1.0-SNAPSHOT</mdsal.version>
-        <mdsalmodel.version>0.9.0-SNAPSHOT</mdsalmodel.version>
-        <salGeneratorPath>target/generated-classes/mdsal-binding</salGeneratorPath>
+        <yangtools.version>1.0.1-SNAPSHOT</yangtools.version>
+        <mdsal.version>2.1.1-SNAPSHOT</mdsal.version>
+        <mdsalmodel.version>0.9.1-SNAPSHOT</mdsalmodel.version>
+        <salGeneratorPath>target/generated-sources/mdsal-binding</salGeneratorPath>
     </properties>
 
     <dependencyManagement>
@@ -79,7 +79,7 @@
                                 <dependency>
                                     <groupId>org.opendaylight.mdsal</groupId>
                                     <artifactId>maven-sal-api-gen-plugin</artifactId>
-                                    <version>0.9.0-SNAPSHOT</version>
+                                    <version>0.9.1-SNAPSHOT</version>
                                     <type>jar</type>
                                 </dependency>
                             </dependencies>
                                     </goals>
                                     <configuration>
                                         <sources>
+                                            <source>src/main/yang</source>
                                             <source>${salGeneratorPath}</source>
                                         </sources>
                                     </configuration>
                                 </execution>
                             </executions>
                         </plugin>
+
+                        <!-- This has to match the definition in odlparent and exists only
+                             because for some reason PMD does not understand wildcards. -->
+                        <plugin>
+                            <groupId>org.apache.maven.plugins</groupId>
+                            <artifactId>maven-pmd-plugin</artifactId>
+                            <executions>
+                                <execution>
+                                    <id>cpd</id>
+                                    <phase>process-sources</phase>
+                                    <goals>
+                                        <goal>cpd-check</goal>
+                                    </goals>
+                                    <configuration>
+                                        <excludeRoots>
+                                            <excludeRoot>${salGeneratorPath}</excludeRoot>
+                                        </excludeRoots>
+                                    </configuration>
+                                </execution>
+                            </executions>
+                        </plugin>
                     </plugins>
                 </pluginManagement>
                 <plugins>