code2care@mac gradle-examples % gradle mT
FAILURE: Build failed with an exception.
* What went wrong:
Task 'mT' is ambiguous in root project 'gradle-examples'. Candidates are: 'myTask1', 'myTask2'.
* Try:
Run gradle tasks to get a list of available tasks.
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 608ms
build.gradle
task myTask1 {
doLast {
println "myTask1"
}
}
task myTask2 {
doLast {
println "myTask2"
}
}
If you are trying to use abbreviation to call a Gradle task using Camel-Casing you would get an ambiguous error if you have multiple tasks with the similar cases. As you can see I have two tasks in my build.gradle file that have a similar name - the way you can fix this issue is by calling the tasks separately.
code2care@mac gradle-examples % gradle -q myTask1 myTask2
myTask1
myTask2

Gradle Error - Task is ambiguous in root project gradle-examples. Candidates are: myTask1 myTask2
More Posts related to Gradle,
- Task is ambiguous in root project gradle-examples. Candidates are: myTask1, myTask2
- Find installed Gradle version command
- Run IntelliJ Java main method without Gradle build
- Install Gradle VS Code for Java Projects
- Fix: Invalid Gradle JDK configuration found. Could not find the required JavaSDK
- Create a Gradle Java Project in VS Code
- Generate Project Dependency tree using Gradle Command
- How to Clear Gradle Cache on Mac
- How to create Gradle Multi-Project in IntelliJ
- How to run Gradle build in offline mode
- Installing Gradle on macOS - Gradle Tutorial
- Gradle FAILURE: Build failed with an exception - Task not found in root project
- Adding Jackson dependency to Java Gradle Project
More Posts:
- Fix SharePoint 2019 installation error This product requires Visual C++ Redistributable Package for Visual Studio 2017 - SharePoint
- Install Notepad++ silently using Windows Powershell - NotepadPlusPlus
- Quick steps to install Nginx on Ubuntu Linux - Ubuntu
- How to migrate SharePoint Designer 2010 workflow to Power Automate FLOW (Microsoft Office 365) - SharePoint
- How to know Notepad++ is 32-bit or 64-bit Version - NotepadPlusPlus
- Get cURL command from Chrome Inspect Network HTTP URL - cURL
- Java Split String by Spaces - Java
- Java location in Mac OS X - Mac-OS-X