Skip to content

Commit

Permalink
feat: version up
Browse files Browse the repository at this point in the history
  • Loading branch information
LenKIM committed Oct 23, 2022
1 parent ff9acde commit c132141
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {

allprojects(a -> {

version = '0.0.33'
version = '0.0.35'
group = 'com.likelen.identifier'

repositories {
Expand Down
15 changes: 6 additions & 9 deletions identifier-spring-boot-autoconfiguration/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
plugins {
id 'org.springframework.boot'
id 'io.spring.dependency-management'
id 'java-library'
}

Expand All @@ -15,19 +13,18 @@ dependencies {
api (project(":identifier-core"))
api project(":identifier-generator")

implementation 'org.springframework.boot:spring-boot-starter'

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

annotationProcessor 'org.springframework.boot:spring-boot-autoconfigure-processor'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
implementation 'org.springframework.boot:spring-boot-autoconfigure'
implementation 'org.springframework.boot:spring-boot:2.7.5'
implementation 'org.springframework.boot:spring-boot-configuration-processor:2.7.5'
implementation 'org.springframework.boot:spring-boot-autoconfigure:2.7.5'
}

bootJar {
enabled(false)
}

jar {
archiveClassifier = ''
}

test {
useJUnitPlatform()
Expand Down
3 changes: 3 additions & 0 deletions identifier-spring-boot-starter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ dependencies {
bootJar {
enabled(false)
}
jar {
archiveClassifier = ''
}

0 comments on commit c132141

Please sign in to comment.