Codebase list commons-vfs / 7ecc707
Fixed the build failure with Java 9 (Closes: #875353) Emmanuel Bourg 6 years ago
3 changed file(s) with 35 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
00 commons-vfs (2.1-2) UNRELEASED; urgency=medium
11
22 * Team upload.
3 * Fixed the build failure with Java 9 (Closes: #875353)
34 * Standards-Version updated to 4.1.3
45 * Switch to debhelper level 11
56
1818 </testExcludes>
1919 </configuration>
2020 <goals>
21 --- a/pom.xml
22 +++ b/pom.xml
23 @@ -261,7 +261,7 @@
24 </tag>
25 </tags>
26 <aggregate>true</aggregate>
27 - <excludePackageNames>*.webdav.*</excludePackageNames>
28 + <excludePackageNames>*.webdav.*:*.hdfs.*</excludePackageNames>
29 </configuration>
30 </plugin>
31
4242 <executions>
4343 --- a/pom.xml
4444 +++ b/pom.xml
45 @@ -294,6 +294,7 @@
46 </tag>
47 </tags>
48 <aggregate>true</aggregate>
49 + <excludePackageNames>*.webdav.*</excludePackageNames>
45 @@ -247,6 +247,24 @@
46 </excludes>
5047 </configuration>
5148 </plugin>
52 <plugin>
49 + <plugin>
50 + <groupId>org.apache.maven.plugins</groupId>
51 + <artifactId>maven-javadoc-plugin</artifactId>
52 + <version>${commons.javadoc.version}</version>
53 + <configuration>
54 + <tags>
55 + <tag>
56 + <name>todo</name>
57 + <!-- todo tag for all places -->
58 + <placement>a</placement>
59 + <head>To Do:</head>
60 + </tag>
61 + </tags>
62 + <aggregate>true</aggregate>
63 + <excludePackageNames>*.webdav.*</excludePackageNames>
64 + </configuration>
65 + </plugin>
66 +
67 </plugins>
68 </build>
69