Bug 5947: additional tests for dom-adapter #6
[mdsal.git] / binding / binding-parent / pom.xml
index e1aa60e0887faa12dfaf51929f3017096e69fe7e..160ae980f66f5e8ba036501ec6154f1dd0b19bbe 100644 (file)
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>bundle-parent</artifactId>
-        <version>1.7.0-SNAPSHOT</version>
+        <version>1.8.0-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.10.0-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.1.0-SNAPSHOT</yangtools.version>
+        <mdsal.version>2.2.0-SNAPSHOT</mdsal.version>
+        <mdsalmodel.version>0.10.0-SNAPSHOT</mdsalmodel.version>
+        <salGeneratorPath>target/generated-sources/mdsal-binding</salGeneratorPath>
     </properties>
 
+    <build>
+        <!-- https://bugs.opendaylight.org/show_bug.cgi?id=6252 -->
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+            <resource>
+                <directory>target/generated-sources/spi</directory>
+            </resource>
+            <resource>
+                <directory>target/generated-sources/yang</directory>
+            </resource>
+        </resources>
+    </build>
+
     <dependencyManagement>
         <dependencies>
             <dependency>
@@ -79,7 +94,7 @@
                                 <dependency>
                                     <groupId>org.opendaylight.mdsal</groupId>
                                     <artifactId>maven-sal-api-gen-plugin</artifactId>
-                                    <version>0.9.0-SNAPSHOT</version>
+                                    <version>0.10.0-SNAPSHOT</version>
                                     <type>jar</type>
                                 </dependency>
                             </dependencies>
                                 </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>
             </build>
         </profile>
     </profiles>
+
+  <!--
+      Maven Site Configuration
+
+      The following configuration is necessary for maven-site-plugin to
+      correctly identify the correct deployment path for OpenDaylight Maven
+      sites.
+  -->
+  <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
+
+  <distributionManagement>
+    <site>
+      <id>opendaylight-site</id>
+      <url>${nexus.site.url}/${project.artifactId}/</url>
+    </site>
+  </distributionManagement>
+
 </project>