Skip to content

Commit

Permalink
Merge branch 'main' into houskeeping/add-unit-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raynigon authored May 17, 2022
2 parents 02276ba + 8b745b2 commit b41c83d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/cd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,12 @@ jobs:
- name: Copy Assets
run: |
mkdir -p build/jars/
cp jackson-module/build/libs/*.jar build/jars/
cp jackson-starter/build/libs/*.jar build/jars/
cp jpa-starter/build/libs/*.jar build/jars/
cp springdoc-starter/build/libs/*.jar build/jars/
cp spring-boot-core-starter/build/libs/*.jar build/jars/
cp spring-boot-jackson-starter/build/libs/*.jar build/jars/
cp spring-boot-jpa-starter/build/libs/*.jar build/jars/
cp spring-boot-springdoc-starter/build/libs/*.jar build/jars/
cp unit-api-core/build/libs/*.jar build/jars/
cp unit-api-jackson/build/libs/*.jar build/jars/
cp unit-api-kotlin/build/libs/*.jar build/jars/
- id: content
name: Create Release Content
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ subprojects {
}

dependencies {
compileOnly 'org.projectlombok:lombok:1.18.22'
compileOnly 'org.projectlombok:lombok:1.18.24'
implementation 'javax.measure:unit-api:2.1.3'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.slf4j:slf4j-api:1.7.36'
Expand All @@ -85,7 +85,7 @@ subprojects {
testImplementation 'org.codehaus.groovy:groovy:3.0.10'
testImplementation platform("org.spockframework:spock-bom:2.1-groovy-3.0")
testImplementation 'org.spockframework:spock-core'
testRuntimeOnly "net.bytebuddy:byte-buddy:1.12.8"
testRuntimeOnly "net.bytebuddy:byte-buddy:1.12.10"
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=2.0.0-SNAPSHOT
version=2.0.1-SNAPSHOT
org.gradle.caching=true
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ nav:
- JavaDoc: javadoc-ref.md
- Contribution: contribution.md
extra:
latest_version: 1.1.7
latest_version: 2.0.0
2 changes: 1 addition & 1 deletion spring-boot-jpa-starter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation("org.postgresql:postgresql:42.3.3")
testImplementation("org.postgresql:postgresql:42.3.5")
testImplementation("org.testcontainers:postgresql:1.16.3")
testImplementation 'org.spockframework:spock-spring'
}
2 changes: 1 addition & 1 deletion spring-boot-springdoc-starter/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {
compileOnly 'org.springframework.boot:spring-boot-starter'
compileOnly 'org.springdoc:springdoc-openapi-webmvc-core:1.6.6'
compileOnly 'org.springdoc:springdoc-openapi-webmvc-core:1.6.8'
implementation project(":unit-api-jackson")
implementation project(":unit-api-core")
implementation project(":spring-boot-core-starter")
Expand Down

0 comments on commit b41c83d

Please sign in to comment.