Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Remove duplicate framework dependencies, Bump versions in parent buil…
Browse files Browse the repository at this point in the history
…d.gradle

Signed-off-by: Eamonn Mansour <[email protected]>
  • Loading branch information
eamansour committed Aug 14, 2024
1 parent 1730c94 commit d8eb7e6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions galasa-extensions-parent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'signing'
}

version = '0.36.0'
version = '0.37.0'

//---------------------------------------------------------------
// We need to gather the release and packaging metadata from each
Expand Down Expand Up @@ -167,7 +167,7 @@ publishing {
name = "Manifest for extensions bundle versions"
artifactId = "dev.galasa.extensions.manifest"
groupId = 'dev.galasa'
version = "0.36.0"
version = '0.37.0'
description = "Conveys bundle version information to OBR builds."
licenses {
license {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ version = '0.37.0'

dependencies {
implementation 'dev.galasa:kafka.clients:3.7.0'
implementation 'dev.galasa:dev.galasa.framework:0.37.0'

testImplementation(project(':dev.galasa.extensions.mocks'))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ dependencies {
implementation ('org.apache.httpcomponents:httpclient-osgi:4.5.13')
implementation ('org.apache.httpcomponents:httpcore-osgi:4.4.14')
implementation ('com.google.code.gson:gson:2.10.1')
implementation ('dev.galasa:dev.galasa.framework:0.37.0')
implementation ('junit:junit:4.13.1')
implementation ('org.assertj:assertj-core:3.16.1')
implementation (project(':dev.galasa.extensions.common'))
Expand Down
3 changes: 2 additions & 1 deletion set-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,14 @@ function bump_version {
cat $source_file | sed "s/dev.galasa.framework:.*'/dev.galasa.framework:$component_version'/1" > $temp_file
cp $temp_file $source_file

cat $source_file | sed "s/version = '.*'/version = '$component_version'/1" > $temp_file
cat $source_file | sed "s/version[ ]*=.*/version = '$component_version'/1" > $temp_file
cp $temp_file $source_file
}


# Extensions base
bump_version $BASEDIR/galasa-extensions-parent/buildSrc/src/main/groovy/galasa.extensions.gradle $temp_dir/galasa.extensions.gradle
bump_version $BASEDIR/galasa-extensions-parent/build.gradle $temp_dir/extensions-parent.build.gradle

# Couchdb...
bump_version $BASEDIR/galasa-extensions-parent/dev.galasa.ras.couchdb/build.gradle $temp_dir/couchdb-build.gradle
Expand Down

0 comments on commit d8eb7e6

Please sign in to comment.