Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is "group" property for in Gradle?

Tags:

gradle

groovy

Gradle documentation lists group as a property of Project.

I failed to find any hints about the purpose and/or usage of this property.

Please point me into the right direction.

like image 350
PM 77-1 Avatar asked Sep 02 '25 13:09

PM 77-1


1 Answers

group signifies the groupId of the project/task that is being worked on.

com.example:my-project:0.1
----------- ---------- ---
     |         |        |
   groupId  artifact  version
like image 198
dmahapatro Avatar answered Sep 05 '25 17:09

dmahapatro