Add jenkinsfile for pipeline build and dockerfile for build
Signed-off-by: brian <brian@brutex.de>master
parent
9229c9d0f8
commit
c912c4ece1
|
@ -93,6 +93,15 @@ publishing {
|
|||
mavenJava(MavenPublication) {
|
||||
// artifact customFatJar
|
||||
// from components.java
|
||||
pom.withXml {
|
||||
def dependencyNode = asNode().appendNode('dependencies').appendNode('dependency')
|
||||
dependencyNode.appendNode('groupId', 'net.brutex.cavis')
|
||||
dependencyNode.appendNode('artifactId', 'cavis-native-lib')
|
||||
dependencyNode.appendNode('version', project.version)
|
||||
dependencyNode.appendNode('classifier', 'linux-x86_64-avx2-cpu')
|
||||
dependencyNode.appendNode('scope', 'compile')
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue