Skip to content

Commit b41c83d

Browse files
authored
Merge branch 'main' into houskeeping/add-unit-tests
2 parents 02276ba + 8b745b2 commit b41c83d

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

.github/workflows/cd-release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ jobs:
4242
- name: Copy Assets
4343
run: |
4444
mkdir -p build/jars/
45-
cp jackson-module/build/libs/*.jar build/jars/
46-
cp jackson-starter/build/libs/*.jar build/jars/
47-
cp jpa-starter/build/libs/*.jar build/jars/
48-
cp springdoc-starter/build/libs/*.jar build/jars/
45+
cp spring-boot-core-starter/build/libs/*.jar build/jars/
46+
cp spring-boot-jackson-starter/build/libs/*.jar build/jars/
47+
cp spring-boot-jpa-starter/build/libs/*.jar build/jars/
48+
cp spring-boot-springdoc-starter/build/libs/*.jar build/jars/
4949
cp unit-api-core/build/libs/*.jar build/jars/
50+
cp unit-api-jackson/build/libs/*.jar build/jars/
5051
cp unit-api-kotlin/build/libs/*.jar build/jars/
5152
- id: content
5253
name: Create Release Content

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ subprojects {
7474
}
7575

7676
dependencies {
77-
compileOnly 'org.projectlombok:lombok:1.18.22'
77+
compileOnly 'org.projectlombok:lombok:1.18.24'
7878
implementation 'javax.measure:unit-api:2.1.3'
7979
implementation 'org.apache.commons:commons-lang3:3.12.0'
8080
implementation 'org.slf4j:slf4j-api:1.7.36'
@@ -85,7 +85,7 @@ subprojects {
8585
testImplementation 'org.codehaus.groovy:groovy:3.0.10'
8686
testImplementation platform("org.spockframework:spock-bom:2.1-groovy-3.0")
8787
testImplementation 'org.spockframework:spock-core'
88-
testRuntimeOnly "net.bytebuddy:byte-buddy:1.12.8"
88+
testRuntimeOnly "net.bytebuddy:byte-buddy:1.12.10"
8989
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
9090
}
9191

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=2.0.0-SNAPSHOT
1+
version=2.0.1-SNAPSHOT
22
org.gradle.caching=true

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ nav:
3535
- JavaDoc: javadoc-ref.md
3636
- Contribution: contribution.md
3737
extra:
38-
latest_version: 1.1.7
38+
latest_version: 2.0.0

spring-boot-jpa-starter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
testImplementation('org.springframework.boot:spring-boot-starter-test') {
1010
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
1111
}
12-
testImplementation("org.postgresql:postgresql:42.3.3")
12+
testImplementation("org.postgresql:postgresql:42.3.5")
1313
testImplementation("org.testcontainers:postgresql:1.16.3")
1414
testImplementation 'org.spockframework:spock-spring'
1515
}

spring-boot-springdoc-starter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies {
22
compileOnly 'org.springframework.boot:spring-boot-starter'
3-
compileOnly 'org.springdoc:springdoc-openapi-webmvc-core:1.6.6'
3+
compileOnly 'org.springdoc:springdoc-openapi-webmvc-core:1.6.8'
44
implementation project(":unit-api-jackson")
55
implementation project(":unit-api-core")
66
implementation project(":spring-boot-core-starter")

0 commit comments

Comments
 (0)