Test Gradle plugin against Gradle 8.0.1

Closes gh-34457
This commit is contained in:
Andy Wilkinson
2023-03-01 18:09:57 +00:00
parent d39c94f437
commit 4f7e038f14
25 changed files with 172 additions and 121 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2021 the original author or authors.
* Copyright 2012-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,6 +31,7 @@ public class BootRunClasspathApplication {
}
public static void main(String[] args) {
System.out.println("Main class name = " + BootRunClasspathApplication.class.getName());
int i = 1;
for (String entry : ManagementFactory.getRuntimeMXBean().getClassPath().split(File.pathSeparator)) {
System.out.println(i++ + ". " + entry);