LaunchWrapper/build.gradle

35 lines
743 B
Groovy
Raw Normal View History

2022-11-10 03:52:25 -07:00
apply plugin: 'java'
apply plugin: 'eclipse'
repositories {
maven {
url "https://libraries.minecraft.net/"
// Needs .poms in order to function
// url "https://mcphackers.github.io/libraries/"
2022-11-10 03:52:25 -07:00
}
mavenCentral()
}
group = 'org.mcphackers'
archivesBaseName = 'launchwrapper'
version = '1.0'
sourceCompatibility = 1.6
dependencies {
// implementation 'org.lwjgl:lwjgl:2.9.4'
// implementation 'org.lwjgl:lwjgl_util:2.9.4'
2022-11-10 03:52:25 -07:00
implementation 'org.ow2.asm:asm:9.3'
implementation 'org.ow2.asm:asm-tree:9.3'
implementation 'org.json:json:20220924'
2022-11-10 03:52:25 -07:00
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives jar
archives sourcesJar
}