Add jenkinsfile for pipeline build and dockerfile for build

Signed-off-by: brian <brian@brutex.de>
master
Brian Rosenberger 2022-10-25 13:20:14 +02:00
parent efd106dc0a
commit 400429a32f
1 changed files with 2 additions and 8 deletions

View File

@ -70,7 +70,9 @@ plugins {
}
chipList.each{ thisChip ->
configurations {
create("${thisChip}SupportImplementation")
findByName("${thisChip}SupportImplementation").setCanBeConsumed(true)
}
}
@ -434,14 +436,6 @@ chipList.each { thisChip ->
}
}
chipList.each{ thisChip ->
configurations {
implementation.extendsFrom findByName("${thisChip}SupportImplementation")
findByName("${thisChip}SupportImplementation").setCanBeConsumed(true)
}
}
tasks.withType(JavaCompile) {
// options.setCompilerArgs(Arrays.asList("-Xlint:unchecked"))
}