Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,504,874
Community Members
 
Community Events
180
Community Groups

JDK capabilities with spaces in name as bamboo variable

If a plan needs to use a specific JDK in a script task, how can I specify it? What works is generic one "java17=${bamboo.capability.system.jdk.JDK}". Say we'd like to use 1.7.025. So far tried:

java17=${bamboo.capability.system.jdk.JDK 1.7.0_25}

java17=${bamboo.capability.system.jdk.JDK\ 1.7.0_25}

java17=${"bamboo.capability.system.jdk.JDK 1.7.0_25"}

None worked :(

4 answers

1 accepted

1 vote
Answer accepted
EddieW Rising Star Sep 23, 2013

We recommend that you do not use capability labels with space characters, if you wish to use them as variables. A possible solution for space characters is to format them with '${}' symbols, however, this does not work in all cases.

https://confluence.atlassian.com/display/BAMBOO/Bamboo+variables#Bamboovariables-Specifyingcapabilitiesasvariables

JDKs apparently are autodiscovered and so labels are auto-created. I am hesitant to make changes to all of them (currently about 15 different JDKs in our bamboo). But I found this this works just fine:

java17="${bamboo.capability.system.jdk.JDK 1.7.0_25}"

Since this format is in line with your answer I am going to accept it.

I think it would be really nice if the JDK dropdown was available on script tasks. Since Gradle isn't supported out of the box, the only way to run a Gradle build it by using the script task, not having a JDK dropdown available just makes choosing your own JDK much more complex than it should be.

Are these variables something I can use inline in the build plan task?  I tried to use java17="${bamboo.capability.system.jdk.JDK 1.7.0_25}" in the inline script, but it throws an invalid substitution error.

See my answer in the same thread: "

${bamboo.capability.system.jdk.JDK 1.8}" works for me, as well as the environment variable "$bamboo_capability_system_jdk_JDK_1_8"

Oups, apparently I have to remove the "+" from

${bamboo.capability.system.jdk.JDK+1.8}

which yields

${bamboo.capability.system.jdk.JDK 1.8}

The corresponding environment variable also works (that is printed in the logs) for the sh scripts

$bamboo_capability_system_jdk_JDK_1_8

 

 

I am hitting the same issue, JDK 1.8, the capability key looks like this:

system.jdk.JDK+1.8

and I do not know how to get rid from the "+"

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events