LaunchWrapper/build.gradle

35 lines
723 B
Groovy
Raw Normal View History

2022-11-10 03:52:25 -07:00
apply plugin: 'java'
apply plugin: 'eclipse'
repositories {
2023-02-04 04:56:49 -07:00
maven {
url "https://mcphackers.github.io/libraries/"
}
2022-11-10 03:52:25 -07:00
maven {
url "https://libraries.minecraft.net/"
}
mavenCentral()
}
group = 'org.mcphackers'
archivesBaseName = 'launchwrapper'
version = '1.0'
2023-03-06 06:11:36 -07:00
sourceCompatibility = 1.5
2022-11-10 03:52:25 -07:00
dependencies {
2023-02-04 04:56:49 -07:00
implementation 'org.lwjgl.lwjgl:lwjgl:2.9.4'
implementation 'org.lwjgl.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
2023-02-04 04:56:49 -07:00
}