Created
August 6, 2023 07:17
-
-
Save A-pZ/a12f42a49ce69b8d369f46767bdf2625 to your computer and use it in GitHub Desktop.
Salesforce連携用アプリケーションのbuild.properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id 'java' | |
id 'org.springframework.boot' version '3.1.0' | |
id 'io.spring.dependency-management' version '1.1.0' | |
id 'groovy' | |
} | |
group = 'com.github.apz' | |
version = '1.0.0' | |
java { | |
sourceCompatibility = '17' | |
} | |
configurations { | |
compileOnly { | |
extendsFrom annotationProcessor | |
} | |
} | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' | |
implementation 'org.springframework.boot:spring-boot-starter-web' | |
implementation 'org.springframework.boot:spring-boot-starter-webflux' | |
// Bulkのクエリ結果はCSV | |
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-csv' | |
compileOnly 'org.projectlombok:lombok' | |
developmentOnly 'org.springframework.boot:spring-boot-devtools' | |
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' | |
annotationProcessor 'org.projectlombok:lombok' | |
testImplementation 'org.springframework.boot:spring-boot-starter-test' | |
testImplementation 'org.spockframework:spock-core:2.4-M1-groovy-4.0' | |
testImplementation 'org.spockframework:spock-spring:2.4-M1-groovy-4.0' | |
testImplementation 'org.apache.groovy:groovy-all:4.0.6' | |
} | |
tasks.named('test') { | |
useJUnitPlatform() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment