You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/03/24 22:32:54 UTC

[maven-shared-utils] branch master updated: docs: Java 7 is the target (#24)

This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shared-utils.git


The following commit(s) were added to refs/heads/master by this push:
     new 297e7ff  docs: Java 7 is the target (#24)
297e7ff is described below

commit 297e7ff82ec6f3708b502279b9f71b44a18a9db0
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Tue Mar 24 18:32:48 2020 -0400

    docs: Java 7 is the target (#24)
    
    @rfscholte update from java 6
---
 readme.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/readme.md b/readme.md
index f78e685..4050f9d 100644
--- a/readme.md
+++ b/readme.md
@@ -54,7 +54,7 @@ There are some guidelines which will make applying PRs easier for us:
 + Create a branch from where you want to base your work (this is usually the master branch).
   Push your changes to a branch in your fork of the repository.
 + Make commits of logical units.
-+ You can use version 9 of Java, but be aware that the code has target of version 6.
++ You can compile with JDK 7 or later, but the code targets Java 7. For example, you cannot use lambdas.
 + Respect the original code style: by using the same [codestyle][code-style],
   patches should only highlight the actual difference, not being disturbed by any formatting issues:
   + Only use spaces for indentation.