File tree 6 files changed +8
-5
lines changed
org.jacoco.doc/docroot/doc
6 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 7
7
curl -LsS "http://www.apache.org/dyn/closer.cgi?action=download&filename=maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip" > apache-maven-3.3.9-bin.zip &&
8
8
unzip apache-maven-3.3.9-bin.zip -d C:\Users\appveyor
9
9
)
10
- - SET PATH=C:\Users\appveyor\apache-maven-3.3.9\bin;%PATH%
10
+ - SET JAVA_HOME=C:\Program Files\Java\jdk11
11
+ - SET PATH=C:\Users\appveyor\apache-maven-3.3.9\bin;%JAVA_HOME%;%PATH%
11
12
12
13
build_script :
13
14
# Maven 3.3.9 requires Java >= 7, but generation of Javadocs requires Java <= 6 (https://github.com/jacoco/jacoco/issues/110)
Original file line number Diff line number Diff line change 78
78
tar -xzf .maven/maven.tar.gz -C .maven --strip-components 1
79
79
displayName: Setup Maven
80
80
- bash : |
81
- if [[ "$JDK_VERSION" -ge "8 " ]]; then
81
+ if [[ "$JDK_VERSION" -ge "11 " ]]; then
82
82
export JAVA_HOME=$PWD/.jdk
83
83
fi
84
84
if [[ "$BUILD_SOURCEBRANCH" == "refs/heads/master" && "$JDK_VERSION" == "5" ]]; then
Original file line number Diff line number Diff line change 531
531
<configuration >
532
532
<rules >
533
533
<requireJavaVersion >
534
- <version >1.8 </version >
534
+ <version >11 </version >
535
535
</requireJavaVersion >
536
536
<requireMavenVersion >
537
537
<!-- Maven 3.8.2 contains bug - see https://github.com/jacoco/jacoco/issues/1218 -->
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ <h1>Build</h1>
24
24
The JaCoCo build is based on < a href ="http://maven.apache.org/ "> Maven</ a > and
25
25
can be locally executed on every machine with a proper
26
26
< a href ="environment.html "> environment setup</ a > . In particular you need at
27
- least < a href ="http://maven.apache.org/ "> Maven 3.3.9</ a > and JDK 8
27
+ least < a href ="http://maven.apache.org/ "> Maven 3.3.9</ a > and JDK 11
28
28
installations. Developers are encouraged to run the build before every commit
29
29
to ensure consistency of the source tree.
30
30
</ p >
Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ <h3>Non-functional Changes</h3>
40
40
< li > JaCoCo now depends on ASM 9.4
41
41
(GitHub < a href ="https://github.com/jacoco/jacoco/issues/1299 "> #1299</ a > ,
42
42
< a href ="https://github.com/jacoco/jacoco/issues/1368 "> #1368</ a > ).</ li >
43
+ < li > JaCoCo build now requires JDK 11
44
+ (GitHub < a href ="https://github.com/jacoco/jacoco/issues/1413 "> #1413</ a > ).</ li >
43
45
</ ul >
44
46
45
47
< h2 > Release 0.8.8 (2022/04/05)</ h2 >
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ <h3>Build</h3>
76
76
77
77
< p >
78
78
The JaCoCo build is based on < a href ="http://maven.apache.org/ "> Maven</ a >
79
- and requires at least Maven 3.3.9 and JDK 8 .
79
+ and requires at least Maven 3.3.9 and JDK 11 .
80
80
See the < a href ="build.html "> build description</ a > for details.
81
81
</ p >
82
82
You can’t perform that action at this time.
0 commit comments