This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-doxia-sitetools.git
The following commit(s) were added to refs/heads/master by this push: new 8a34b48 use Doxia 1.8 8a34b48 is described below commit 8a34b482b21b1210c65049aabbae556ad3d54551 Author: Hervé Boutemy <hbout...@apache.org> AuthorDate: Thu Dec 21 22:15:31 2017 +0100 use Doxia 1.8 --- doxia-doc-renderer/pom.xml | 25 ++++++++++++++++++++++ .../maven/doxia/siterenderer/EntitiesVerifier.java | 3 ++- pom.xml | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/doxia-doc-renderer/pom.xml b/doxia-doc-renderer/pom.xml index e3643db..76131de 100644 --- a/doxia-doc-renderer/pom.xml +++ b/doxia-doc-renderer/pom.xml @@ -124,6 +124,12 @@ under the License. <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.5</version> + <exclusions> + <exclusion> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + </exclusion> + </exclusions> </dependency> <!-- misc --> @@ -154,6 +160,25 @@ under the License. </systemProperties> </configuration> </plugin> + <plugin><!-- TODO remove when minimum Java set to 7 --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <executions> + <execution> + <id>enforce-bytecode-version</id> + <configuration> + <rules> + <enforceBytecodeVersion> + <excludes> + <exclude>org.apache.maven.doxia:doxia-module-markdown</exclude> + <exclude>org.nibor.autolink:autolink</exclude> + </excludes> + </enforceBytecodeVersion> + </rules> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> </project> diff --git a/doxia-site-renderer/src/test/java/org/apache/maven/doxia/siterenderer/EntitiesVerifier.java b/doxia-site-renderer/src/test/java/org/apache/maven/doxia/siterenderer/EntitiesVerifier.java index 698aa39..fb34027 100644 --- a/doxia-site-renderer/src/test/java/org/apache/maven/doxia/siterenderer/EntitiesVerifier.java +++ b/doxia-site-renderer/src/test/java/org/apache/maven/doxia/siterenderer/EntitiesVerifier.java @@ -108,7 +108,8 @@ public class EntitiesVerifier HtmlAnchor a = (HtmlAnchor) elementIterator.next(); assertNotNull( a ); - assertEquals( "section_name_with_entities:____", a.getAttribute( "name" ) ); + assertEquals( "section_name_with_entities:_.27.26.27_.27.CE.91.27_.27.C2.A0.27_.27.3F.3F.27", + a.getAttribute( "name" ) ); div = (HtmlDivision) elementIterator.next(); assertNotNull( div ); diff --git a/pom.xml b/pom.xml index 290eedf..8c2c540 100644 --- a/pom.xml +++ b/pom.xml @@ -69,7 +69,7 @@ under the License. </distributionManagement> <properties> - <doxiaVersion>1.7</doxiaVersion> + <doxiaVersion>1.8</doxiaVersion> <maven.site.path>doxia-sitetools-archives/doxia-sitetools-LATEST</maven.site.path> </properties> -- To stop receiving notification emails like this one, please contact ['"commits@maven.apache.org" <commits@maven.apache.org>'].