yarn/settings.gradle

8 lines
310 B
Groovy
Raw Normal View History

// This check is done here before any plugins that may require java 11 are able to load.
if (!JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {
throw new UnsupportedOperationException("Yarn's buildscript requires Java 11 or higher.")
}
rootProject.name = "yarn"
includeBuild 'build-logic'