Skip to content

Commit a815a18

Browse files
committed
Update groupId artifact to use project data.
1 parent 392ded1 commit a815a18

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

spring-annotated-data-binder-core/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ publishing {
6868

6969
publications {
7070
mavenJava(MavenPublication) {
71-
groupId = 'com.mattbertolini'
72-
artifactId = 'spring-annotated-data-binder-core'
73-
version = '0.1.0-SNAPSHOT'
71+
groupId = project.group
72+
artifactId = project.name
73+
version = project.version
7474

7575
from components.java
7676

spring-webflux-annotated-data-binder/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ publishing {
6565

6666
publications {
6767
mavenJava(MavenPublication) {
68-
groupId = 'com.mattbertolini'
69-
artifactId = 'spring-webflux-annotated-data-binder'
70-
version = '0.1.0-SNAPSHOT'
68+
groupId = project.group
69+
artifactId = project.name
70+
version = project.version
7171

7272
from components.java
7373

spring-webmvc-annotated-data-binder/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ publishing {
6161

6262
publications {
6363
mavenJava(MavenPublication) {
64-
groupId = 'com.mattbertolini'
65-
artifactId = 'spring-webmvc-annotated-data-binder'
66-
version = '0.1.0-SNAPSHOT'
64+
groupId = project.group
65+
artifactId = project.name
66+
version = project.version
6767

6868
from components.java
6969

0 commit comments

Comments
 (0)