Skip to content

Commit

Permalink
Always update our snapshot dependencies
Browse files Browse the repository at this point in the history
fixes #49
  • Loading branch information
rudi committed Dec 4, 2024
1 parent 660a045 commit 70f8266
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion nebulous-requirements-extractor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ dependencies {
api 'com.fasterxml.jackson.core:jackson-databind:2.17.2'

// SAL client library; exported to consumers
api 'org.ow2.proactive:sal-common:13.1.0-SNAPSHOT'
api('org.ow2.proactive:sal-common:13.1.0-SNAPSHOT') {
changing = true
}

// YAML parsing: https://github.com/FasterXML/jackson-dataformats-text
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.2'
Expand Down
7 changes: 5 additions & 2 deletions optimiser-controller/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ dependencies {
implementation 'info.picocli:picocli:4.7.6'

// SAL client library
implementation 'org.ow2.proactive:sal-common:13.1.0-SNAPSHOT'
implementation('org.ow2.proactive:sal-common:13.1.0-SNAPSHOT') {
changing = true
}

// Logging: SLF4J (implemented by Logback)
implementation 'ch.qos.logback:logback-classic:1.5.6'
Expand All @@ -55,8 +57,9 @@ dependencies {

// the EXN Middleware:
// https://openproject.nebulouscloud.eu/projects/nebulous-collaboration-hub/wiki/asynchronous-messaging-specification
implementation ('eu.nebulouscloud:exn-connector-java:1.0-SNAPSHOT') {
implementation('eu.nebulouscloud:exn-connector-java:1.0-SNAPSHOT') {
exclude group: 'org.slf4j', module: 'slf4j-simple'
changing = true
}

// Analysing KubeVela
Expand Down

0 comments on commit 70f8266

Please sign in to comment.