Skip to content

Commit 7e496c6

Browse files
committed
fix gradle deprecations
1 parent db9edc6 commit 7e496c6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ plugins {
1010
alias(libs.plugins.versions)
1111
}
1212

13-
group projectGroupId
14-
version projectVersion
13+
group = projectGroupId
14+
version = projectVersion
1515
println("version: $version")
1616

1717
repositories {
1818
mavenLocal()
1919
mavenCentral()
2020
maven {
21-
url "https://oss.sonatype.org/content/repositories/snapshots"
21+
url = "https://oss.sonatype.org/content/repositories/snapshots"
2222
}
2323
}
2424

gradle/publishing.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ configure(project.rootProject) {
1313
publishing {
1414
publications {
1515
processorSpring (MavenPublication) {
16-
groupId project.group
17-
artifactId project.name
18-
version project.version
16+
groupId = project.group
17+
artifactId = project.name
18+
version = project.version
1919

2020
from components.java
2121

0 commit comments

Comments
 (0)