We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
프로젝트 초기화 및 Build 속도 개선
The text was updated successfully, but these errors were encountered:
프로젝트 초기화 (#8)
afb2937
### 초기화 - [spring initializr](https://start.spring.io/#!type=gradle-project-kotlin&language=java&platformVersion=3.2.4&packaging=jar&jvmVersion=17&groupId=com.concurrency&artifactId=thread&name=spring-concurrency-thread&description=Examples%20of%20Java%20Thread%20Concurrency%20in%20Spring%20Framework&packageName=com.concurrency.thread&dependencies=web) - Java/Spring Boot - BellSoft Liberica JDK 17 - Spring Web ### 빌드 설정 - `gradle deprecated usage` 개선 - enable `build caching` - enable `CDS` while execution resolve #7
build.gradle.kts
dependencies { implementation("org.springframework.boot:spring-boot-starter-web") testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("org.junit.jupiter:junit-jupiter:5.8.2") } tasks { all { outputs.cacheIf { true } } } tasks.test { jvmArgs("-Xshare:off") useJUnitPlatform() } apply(from = "dumpJsa.gradle.kts") tasks.withType<JavaExec> { dependsOn("dumpJsa") }
dumpJsa.gradle.kts
Sorry, something went wrong.
ooMia
When branches are created from issues, their pull requests are automatically linked.
프로젝트 초기화 및 Build 속도 개선
The text was updated successfully, but these errors were encountered: