Add jenkinsfile for pipeline build and dockerfile for build
Signed-off-by: brian <brian@brutex.de>master
parent
cf5c9b53b9
commit
7a105ed207
|
@ -1,3 +1,5 @@
|
|||
import org.gradle.api.internal.artifacts.configurations.Configurations
|
||||
|
||||
plugins {
|
||||
id 'java-library'
|
||||
id 'maven-publish'
|
||||
|
@ -36,6 +38,10 @@ dependencies {
|
|||
&& !sproj.name.equals("cavis-zoo")) {
|
||||
//compileOnly project(""+sproj.path)
|
||||
api sproj
|
||||
sproj.configurations.each { Configuration c ->
|
||||
logger.quiet(sproj.name + ":" + c.name)
|
||||
}
|
||||
|
||||
if(! sproj.configurations.empty) {
|
||||
//compileOnly project(sproj.getPath())
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*/
|
||||
|
||||
subprojects {
|
||||
group = "net.brutex.cavis-native"
|
||||
group = group + "cavis-native"
|
||||
apply plugin: "java-library"
|
||||
apply plugin: "maven-publish"
|
||||
apply plugin: "signing"
|
||||
|
|
|
@ -45,7 +45,6 @@ buildscript {
|
|||
return pf
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -116,6 +116,7 @@ include ':cavis-dnn:cavis-dnn-spark:cavis-dnn-spark-parameterserver'
|
|||
include ':cavis-dnn:cavis-dnn-tsne'
|
||||
include ':cavis-datavec'
|
||||
include ':cavis-datavec:cavis-datavec-api'
|
||||
include ':cavis-datavec:dvec-api'
|
||||
include ':cavis-datavec:cavis-datavec-data'
|
||||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-arrow'
|
||||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-image'
|
||||
|
@ -150,4 +151,3 @@ include ':cavis-zoo'
|
|||
include ':cavis-zoo:cavis-zoo-models'
|
||||
include ':brutex-extended-tests'
|
||||
include ':cavis-full'
|
||||
|
||||
|
|
Loading…
Reference in New Issue