mirror of https://github.com/rusefi/uds-tool.git
hello uds-tool
This commit is contained in:
parent
79837b0a67
commit
e656277274
|
@ -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) {}
|
||||
}
|
|
@ -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',
|
||||
]
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
package com.rusefi.uds;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class SecurityTest {
|
||||
@Test
|
||||
public void testCalcKey() {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue