hello uds-tool

This commit is contained in:
rusefillc 2023-06-03 00:10:07 -04:00
parent 79837b0a67
commit e656277274
3 changed files with 43 additions and 0 deletions

24
build.gradle Normal file
View File

@ -0,0 +1,24 @@
apply plugin: 'java'
apply from: 'dependencies.gradle'
allprojects {
repositories {
mavenCentral()
}
plugins.withType(JavaPlugin) {
dependencies {
implementation global_libs.annotations
testImplementation global_libs.junit
}
}
}
tasks.named('wrapper') {
distributionType = Wrapper.DistributionType.ALL
}
// gradlew allDeps
subprojects {
task allDeps(type: DependencyReportTask) {}
}

9
dependencies.gradle Normal file
View File

@ -0,0 +1,9 @@
ext {
global_libs = [
junit : "junit:junit:4.13.2",
annotations : "org.jetbrains:annotations:16.0.1",
jsr305 : "com.google.code.findbugs:jsr305:3.0.2",
mockito : "org.mockito:mockito-all:1.10.19",
jcip : 'net.jcip:jcip-annotations:1.0',
]
}

View File

@ -0,0 +1,10 @@
package com.rusefi.uds;
import org.junit.Test;
public class SecurityTest {
@Test
public void testCalcKey() {
}
}