Skip to content

Commit

Permalink
bump versions, add test logger
Browse files Browse the repository at this point in the history
  • Loading branch information
farrell-m committed Sep 24, 2024
1 parent 9b64307 commit d612a3b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/gradle-plugin-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ java {
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ version=0.0.5-SNAPSHOT

# org.springframework.boot:spring-boot-gradle-plugin
# org.springframework.boot:spring-boot-dependencies
springBootVersion = 3.3.0
springBootVersion = 3.3.4

# io.spring.gradle:dependency-management-plugin
springBootDependencyManagementPluginVersion = 1.1.5
springBootDependencyManagementPluginVersion = 1.1.6

# com.github.ben-manes:gradle-versions-plugin
gradleVersionsPluginVersion = 0.51.0

# checkstyle
checkstyleVersion = 10.17.0
checkstyleVersion = 10.18.1

# com.adarshr:gradle-test-logger-plugin
testLoggerPluginVersion = 4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import org.gradle.testing.jacoco.plugins.JacocoPlugin
class LaaCcmsJavaGradlePlugin implements Plugin<Project> {

private static final String JAVA_VERSION = "21"
private static final String CHECKSTYLE_VERSION = "10.17.0"
private static final String CHECKSTYLE_VERSION = "10.18.1"

@Override
void apply(Project target) {
Expand All @@ -33,12 +33,6 @@ class LaaCcmsJavaGradlePlugin implements Plugin<Project> {

/** Test Tasks **/

// Additional logging
target.tasks.withType(Test).configureEach {
testLogging.showStandardStreams = true
testLogging.showStackTraces = true
}

// Integration tests
if (target.tasks.findByName('integrationTest') == null) {
target.sourceSets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
transitive = false
}

implementation 'io.swagger.core.v3:swagger-models:2.2.22'
implementation 'io.swagger.core.v3:swagger-models:2.2.23'

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

Expand All @@ -25,7 +25,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'

testImplementation 'org.assertj:assertj-core:3.4.1'
testImplementation 'org.assertj:assertj-core:3.26.3'
}

checkstyle {
Expand Down

0 comments on commit d612a3b

Please sign in to comment.