This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-pdf-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new e8bf99e [MPDF-92] Require Java 7 at runtime
e8bf99e is described below
commit e8bf99e905118204fa9ece22e0cb9b33782eac92
Author: Sylwester Lachiewicz <[email protected]>
AuthorDate: Tue Jun 4 21:29:08 2019 +0200
[MPDF-92] Require Java 7 at runtime
---
pom.xml | 23 +----------------------
1 file changed, 1 insertion(+), 22 deletions(-)
diff --git a/pom.xml b/pom.xml
index 69bc02f..21d55c5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,4 +1,4 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?xml version='1.0' encoding='UTF-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
@@ -311,27 +311,6 @@ under the License.
</executions>
</plugin>
<!-- END SNIPPET: configuration -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-enforcer-plugin</artifactId>
- <executions>
- <execution>
- <id>enforce-bytecode-version</id>
- <configuration>
- <rules>
- <enforceBytecodeVersion>
- <maxJdkVersion>${maven.compiler.target}</maxJdkVersion>
- <excludes><!-- DOXIA-554 Markdown parser requires Java 7
(use version 1.7 if you absolutely require Java 6) -->
-
<exclude>org.apache.maven.doxia:doxia-module-markdown</exclude>
- <exclude>org.nibor.autolink:autolink</exclude>
- </excludes>
- </enforceBytecodeVersion>
- </rules>
- <fail>true</fail>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>