migrate configuration_definition to gradle #3746

This commit is contained in:
rusefillc 2022-01-06 05:25:57 -05:00
parent 2730536fcd
commit 17ae85748b
2 changed files with 10 additions and 0 deletions

View File

@ -23,5 +23,7 @@ include ':enum_to_string'
project(':enum_to_string').projectDir = new File('../java_tools/enum_to_string')
include ':bin2header'
project(':bin2header').projectDir = new File('../java_tools/bin2header')
include ':config_definition'
project(':config_definition').projectDir = new File('../java_tools/configuration_definition')
include ':ts_plugin_launcher'
project(':ts_plugin_launcher').projectDir = new File('../java_tools/ts_plugin_launcher')

View File

@ -0,0 +1,8 @@
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
apply from: '../../android/dependencies.gradle'
defaultTasks 'shadowJar'