Hi I'm using Bamboo Specs for creating plans in automated manner. So how can I add maven 3.x configuration in Tasks using Java code.
This can be achieved with the Task: Maven Bamboo Specs syntax for Java, for example:
MavenTask mavenTask = new MavenTask()
    .goal("clean install")
    .hasTests(false)
    .version3()
    .jdk("JDK 1.8")
    .executableLabel("Maven 3.2");Hi,
Thanks for the assistance. When I'm using this it throws error like
Maven task: Can't find executable by label: 'Maven 3.x'. Available values: []
How can I resolve this in code?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The best way is to define executables from the UI as described here.
Go to *Overview -> Executables* and check if the respective agent's Maven installation location is defined right.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, does Bamboo have a plugin for the Laravel framework?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
 
 
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.