mirror of https://github.com/apache/nifi.git
NIFI-9887 Set minimum Java build version to 1.8.0-251
- Set minimalJavaBuildVersion property for maven-enforcer-plugin configuration - Updated README to mention Java 8 Update 251 in Minimum Requirements - Disabled site-plugin from parent configuration This closes #5942 Signed-off-by: Mike Thomsen <mthomsen@apache.org>
This commit is contained in:
parent
324e4797e6
commit
af3375669c
|
@ -61,7 +61,7 @@ Apache NiFi was made for dataflow. It supports highly configurable directed grap
|
|||
- Multiple teams can manage and share specific portions of the flow
|
||||
|
||||
## Minimum Requirements
|
||||
* JDK 8
|
||||
* JDK 8 Update 251
|
||||
* Apache Maven 3.6.0
|
||||
|
||||
## Getting Started
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -92,7 +92,11 @@
|
|||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
|
||||
<!-- Set minimum Java version for maven-enforcer-plugin from parent POM -->
|
||||
<minimalJavaBuildVersion>1.8.0-251</minimalJavaBuildVersion>
|
||||
<maven.surefire.arguments />
|
||||
<!-- Disable maven-site-plugin from parent POM -->
|
||||
<maven.site.skip>true</maven.site.skip>
|
||||
<node.version>v16.13.2</node.version>
|
||||
<frontend.mvn.plugin.version>1.12.1</frontend.mvn.plugin.version>
|
||||
<project.build.outputTimestamp>1647889104</project.build.outputTimestamp>
|
||||
|
|
Loading…
Reference in New Issue