Skip to content
Snippets Groups Projects
Commit aa9da448 authored by Sebastian Ebert's avatar Sebastian Ebert
Browse files

updated ci

parent 4cdb96d6
No related branches found
No related tags found
No related merge requests found
Pipeline #12104 failed
......@@ -49,4 +49,32 @@ subprojects {
}
}
publishing {
publications {
maven(MavenPublication) {
artifactId = 'rosjava'
// Comment rs: components.java does not include relast.preprocessor
// from components.java
artifact("build/libs/rosjava-${version}.jar") {
extension 'jar'
}
}
}
repositories {
maven {
url "https://git-st.inf.tu-dresden.de/api/v4/projects/1106/packages/maven"
credentials(HttpHeaderCredentials) {
name = 'Job-Token'
value = System.getenv("CI_JOB_TOKEN")
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
}
defaultTasks 'publish', 'installDist'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment