2021-08-11 15:12:39 -07:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultTasks 'jar'
|
|
|
|
|
2022-10-15 14:57:12 -07:00
|
|
|
apply from: '../../java_tools/dependencies.gradle'
|
2021-08-16 07:20:56 -07:00
|
|
|
|
2021-08-11 15:12:39 -07:00
|
|
|
dependencies {
|
2022-10-15 14:57:12 -07:00
|
|
|
testImplementation global_libs.junit
|
2021-08-11 15:12:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
destinationDirectory = file( '$rootDir/../..' )
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'com.rusefi.LogicData2C'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|