Skip to content

Commit

Permalink
tweak: add gradle git versioning tool
Browse files Browse the repository at this point in the history
  • Loading branch information
kutay-celebi committed Jan 31, 2022
1 parent 64f887d commit 80b47fc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions neka-bom/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
id "java-platform"
id "maven"
id "com.palantir.git-version" version "0.13.0"
}

group "com.kuartz.core"
version "1.0.0"
def details = versionDetails()
version details.lastTag

javaPlatform {
allowDependencies()
Expand Down
2 changes: 1 addition & 1 deletion neka-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies {
api "com.fasterxml.jackson.datatype:jackson-datatype-hibernate5"

compileOnly "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
Expand Down
2 changes: 1 addition & 1 deletion neka-jpa/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
)

compileOnly "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"

testImplementation "org.springframework.boot:spring-boot-starter-test"
}
Expand Down
2 changes: 1 addition & 1 deletion neka-jwt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation "org.springframework.boot:spring-boot-starter-security"

compileOnly "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
Expand Down
2 changes: 1 addition & 1 deletion neka-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
api group: 'org.springframework.boot', name: 'spring-boot-starter-web'

compileOnly 'org.projectlombok:lombok'
annotationProcessor "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"

testImplementation 'org.springframework.boot:spring-boot-starter-test'

Expand Down

0 comments on commit 80b47fc

Please sign in to comment.