mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-10 12:34:11 +01:00
16 lines
425 B
Plaintext
16 lines
425 B
Plaintext
|
plugins {
|
||
|
idea
|
||
|
java
|
||
|
id("dev.architectury.loom") apply false
|
||
|
}
|
||
|
|
||
|
println("Java: ${System.getProperty("java.version")}, JVM: ${System.getProperty("java.vm.version")} (${System.getProperty("java.vendor")}), Arch: ${System.getProperty("os.arch")}")
|
||
|
|
||
|
idea {
|
||
|
// Tell IDEA to always download sources/javadoc artifacts from maven.
|
||
|
module {
|
||
|
isDownloadJavadoc = true
|
||
|
isDownloadSources = true
|
||
|
}
|
||
|
}
|