mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2025-12-09 16:45:37 -07:00
The only left blocker for Gradle 8.0 is that task ':app_pojavlauncher:lintAnalyzeDebug' uses this output of task ':jre_lwjgl3glfw:jar' without declaring an explicit or implicit dependency.
15 lines
371 B
Groovy
15 lines
371 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
jar {
|
|
manifest {
|
|
attributes("Manifest-Version": "1.0",
|
|
"PreMain-Class": "git.artdeell.arcdns.ArcDNSInjectorAgent")
|
|
}
|
|
destinationDirectory.set(file("../app_pojavlauncher/src/main/assets/"))
|
|
}
|