Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit dc28bea

Browse files
updated templates to support gradle 8.x and bumped up boot jar version (#268)
* updated templates to support gradle 8.x and bumped up boot jar version Signed-off-by: Savvas Kyriacou <savvasky@uk.ibm.com> * Empty Commit to trigger build. Signed-off-by: Savvas Kyriacou <savvasky@uk.ibm.com> * Empty Commit to trigger build. Signed-off-by: Savvas Kyriacou <savvasky@uk.ibm.com> * Empty Commit to trigger build. Signed-off-by: Savvas Kyriacou <savvasky@uk.ibm.com> * Empty commit to kick off build Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> --------- Signed-off-by: Savvas Kyriacou <savvasky@uk.ibm.com> Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> Co-authored-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com>
1 parent 6ce67f4 commit dc28bea

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// into the code, so the code knows what versions of galasa it should be
1515
// dealing with. Do not mess with the `def {variableName}` part of hte following
1616
// lines, only change the versions we rely upon.
17-
def galasaBootJarVersion = '0.34.0'
17+
def galasaBootJarVersion = '0.36.0'
1818
def galasaFrameworkVersion = '0.36.0'
1919

2020
// Right now, the REST interface spec is always the same version as the galasa framework bundles.

pkg/embedded/templates/projectCreate/parent-project/obr-project/build.gradle.template

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
plugins {
33
id 'base'
44
id 'maven-publish'
5-
id 'dev.galasa.obr' version '0.33.0'
6-
id 'dev.galasa.testcatalog' version '0.33.0'
5+
id 'dev.galasa.obr' version '0.36.0'
6+
id 'dev.galasa.testcatalog' version '0.36.0'
77
}
88

99
// Set the variables which will control what the built OSGi bundle will be called
@@ -21,6 +21,12 @@ dependencies {
2121
def testcatalog = file('build/testcatalog.json')
2222
def obrFile = file('build/galasa.obr')
2323

24+
25+
tasks.withType(PublishToMavenLocal) { task ->
26+
task.dependsOn genobr
27+
task.dependsOn mergetestcat
28+
}
29+
2430
// Tell gradle to publish the built OBR as a maven artifact on the
2531
// local maven repository.
2632
publishing {

pkg/embedded/templates/projectCreate/parent-project/test-project/build.gradle.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
plugins {
44
id 'java'
55
id 'maven-publish'
6-
id 'dev.galasa.tests' version '0.33.0'
6+
id 'dev.galasa.tests' version '0.36.0'
77
id 'biz.aQute.bnd.builder' version '6.4.0'
88
}
99

0 commit comments

Comments
 (0)