The colon is not an operator (you can see that it is used inside the string). This is the delimiter that Gradle uses to describe subproject paths. For example,
evaluationDependsOn(':api:producer')
will search for a subproject of a producersubproject api.
source
share