You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
When i generate a gradle spring boot project, I observe that there is no Artifact and Description in the build.gradle. All i see is just
group = "com.demo"
version = "0.0.1-SNAPSHOT"
For the name, it is in settings.gradle
name="abc"
But yet in maven, we have
<groupId>com.luv2code.springboot.demo</groupId>
<**artifactId**>mycoolapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>mycoolapp</name>
<**description**>Demo project for Spring Boot</description>
Is it possible to include artifact and description into the generated build.gradle, at least for the sake of consistent with Maven?