-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed as not planned
Labels
Description
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?