Skip to content

Commit

Permalink
Polish build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Nov 16, 2023
1 parent c5785d3 commit d985637
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,27 @@ java {
}

dependencies {
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:$javaFormatVersion"
implementation platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
implementation 'net.sf.biweekly:biweekly:0.6.7'
implementation 'org.apache.httpcomponents.client5:httpclient5'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.webjars:webjars-locator-core'
implementation 'org.webjars:fullcalendar:5.11.3'
runtimeOnly platform('com.azure.spring:spring-cloud-azure-dependencies:5.7.0')
runtimeOnly 'com.azure.spring:spring-cloud-azure-starter-keyvault-secrets'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:$javaFormatVersion")

implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation('net.sf.biweekly:biweekly:0.6.7')
implementation('org.apache.httpcomponents.client5:httpclient5')
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.webjars:fullcalendar:5.11.3')
implementation('org.webjars:webjars-locator-core')

runtimeOnly(platform('com.azure.spring:spring-cloud-azure-dependencies:5.7.0'))
runtimeOnly('com.azure.spring:spring-cloud-azure-starter-keyvault-secrets')

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

testRuntimeOnly('org.junit.platform:junit-platform-launcher')
}

checkstyle {
configProperties = [ 'checkstyle.config.dir' : file('config/checkstyle') ]
}

test {
tasks.named("test") {
useJUnitPlatform()
}

0 comments on commit d985637

Please sign in to comment.