Using api and implementation instead of the deprecated compile configuration. Update to Gradle 6.0.
17 lines
314 B
Groovy
17 lines
314 B
Groovy
//apply plugin: 'antlr'
|
|
//apply plugin: 'java'
|
|
|
|
System.out.println(dependencies.class);
|
|
|
|
dependencies {
|
|
api lib_primitive_collections
|
|
implementation project(':byte-utils')
|
|
implementation project(':file-utils')
|
|
implementation project(':pdb-utils')
|
|
|
|
|
|
implementation lib_log4j2_slf4j_impl
|
|
}
|
|
|
|
|