New gradle scripts to modularize the build process

This commit is contained in:
Pazaz 2022-04-20 21:50:21 -04:00
parent b3fd9e76cf
commit bc7ecce61c
8 changed files with 82 additions and 56 deletions

14
signlink/build.gradle Normal file
View file

@ -0,0 +1,14 @@
plugins {
id 'java'
id 'java-library'
}
version = '1.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compileOnly project(':deob-annotations')
compileOnly 'lib:jogl-all'
}