What is the colon operator in Gradle?

You always see code like

project(':bluewhale').hello 

It doesn't look like Groovy syntax, what is it?

+4
source share
1 answer

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.

+5
source

Source: https://habr.com/ru/post/1607813/


All Articles