eagler-binary-tools/build.gradle
cire3 0ce5ed9374 Features: add Optimized OBJ Converter, convert to gradle project for easier cross-platform/cross-software management, add tests, add QoL features, and update README & EaglerBinaryTools.jar
, mark OBJConverter as deprecated in favor of the new one, and update EaglerBinaryTools.java to reflect this as well as update EaglerBinaryTools.jar
2024-06-20 16:13:12 -05:00

43 lines
825 B
Groovy

plugins {
id 'java'
}
group = 'net.lax1dude.eaglercraft.bintools'
version = ''
repositories {
mavenCentral()
}
sourceSets {
main {
java {
srcDir 'src/main/java'
}
}
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
}
jar {
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'
javadoc.options.addStringOption('Xdoclint:none', '-quiet')
manifest {
attributes(
'Main-Class': 'net.lax1dude.eaglercraft.bintools.EaglerBinaryTools'
)
}
}
test {
useJUnitPlatform()
}