mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-02-23 17:19:44 +08:00
20 lines
325 B
Groovy
20 lines
325 B
Groovy
apply plugin: 'me.tatarka.retrolambda'
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
ext.mainClass = ''
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral();
|
|
|
|
dependencies {
|
|
classpath 'me.tatarka:gradle-retrolambda:3.1.0'
|
|
}
|
|
}
|
|
}
|
|
|
|
retrolambda {
|
|
javaVersion = JavaVersion.VERSION_1_7
|
|
}
|