Remove outdated comments
This commit is contained in:
parent
fcbba523d1
commit
f0747a4096
|
@ -152,7 +152,6 @@ tasks.withType(Test) {
|
||||||
if (java7Home != null) {
|
if (java7Home != null) {
|
||||||
def testJ7 = task "${cloned.name}Java7"(type: cloned.class) {
|
def testJ7 = task "${cloned.name}Java7"(type: cloned.class) {
|
||||||
description "Runs $cloned.name under java 7"
|
description "Runs $cloned.name under java 7"
|
||||||
// TODO: Pull from environment variable:
|
|
||||||
executable = "$java7Home/bin/java"
|
executable = "$java7Home/bin/java"
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
exclude project.testJava8Only
|
exclude project.testJava8Only
|
||||||
|
@ -166,7 +165,6 @@ tasks.withType(Test) {
|
||||||
if (java9Home != null) {
|
if (java9Home != null) {
|
||||||
def testJ9 = task "${cloned.name}Java9"(type: cloned.class) {
|
def testJ9 = task "${cloned.name}Java9"(type: cloned.class) {
|
||||||
description "Runs $cloned.name under java 9"
|
description "Runs $cloned.name under java 9"
|
||||||
// TODO: Pull from environment variable:
|
|
||||||
executable = "$java9Home/bin/java"
|
executable = "$java9Home/bin/java"
|
||||||
project.afterEvaluate {
|
project.afterEvaluate {
|
||||||
exclude project.testJava8Only
|
exclude project.testJava8Only
|
||||||
|
@ -179,7 +177,6 @@ tasks.withType(Test) {
|
||||||
if (java10Home != null) {
|
if (java10Home != null) {
|
||||||
def testJ10 = task "${cloned.name}Java10"(type: cloned.class) {
|
def testJ10 = task "${cloned.name}Java10"(type: cloned.class) {
|
||||||
description "Runs $cloned.name under java 10"
|
description "Runs $cloned.name under java 10"
|
||||||
// TODO: Pull from environment variable:
|
|
||||||
executable = "$java10Home/bin/java"
|
executable = "$java10Home/bin/java"
|
||||||
project.afterEvaluate {
|
project.afterEvaluate {
|
||||||
exclude project.testJava8Only
|
exclude project.testJava8Only
|
||||||
|
|
Loading…
Reference in New Issue