Skip to content

Commit

Permalink
init study-java
Browse files Browse the repository at this point in the history
  • Loading branch information
murjune committed Sep 26, 2024
1 parent ebf6efa commit e32597b
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 1 deletion.
1 change: 1 addition & 0 deletions java-practice/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
7 changes: 7 additions & 0 deletions java-practice/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Introduction

Java 의 stlib 기본 문법에 대해 학습하는 모듈입니다.

- 학습테스트를 통해 학습하고, 정리합니다.
- Test Tool: Junit5, AssertJ

17 changes: 17 additions & 0 deletions java-practice/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
plugins {
id("java-library")
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

tasks.withType<Test> {
useJUnitPlatform()
}

dependencies {
testImplementation(libs.junit5)
testImplementation(libs.assertj)
}
2 changes: 1 addition & 1 deletion kotlin-practice/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introduction

Kotlin/Java 의 stlib 기본 문법에 대해 학습하는 모듈입니다.
Kotlin 의 stlib 기본 문법에 대해 학습하는 모듈입니다.

- 학습테스트를 통해 학습하고, 정리합니다.
- main() 함수를 통해 학습하던 코드를 test 코드로 마이그레이션 중입니다.
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pluginManagement {
gradlePluginPortal()
}
}

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}
Expand All @@ -24,3 +25,4 @@ include("design-pattern")
include("coroutine")
include(":compose-test")
include(":algorithm-practice")
include(":java-practice")

0 comments on commit e32597b

Please sign in to comment.