-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
33 lines (29 loc) · 1.07 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
plugins {
id("java")
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.hamcrest:hamcrest-all:1.3")
testImplementation("junit:junit:4.13.1")
}
tasks.test {
// useJUnitPlatform()
// - FizzBuzz - DONE - Self Run
// - Parrot - DONE - https://github.com/emilybache/Parrot-Refactoring-Kata/tree/main
useJUnit()
// - Beverages - DONE - https://github.com/trikitrok/beverages_pricing_refactoring_kata/tree/master
// - PromotionText - DONE - https://github.com/nealhu/promotion-text-kata/tree/master
}
// LATER
// https://github.com/emilybache/Lift-Kata
// https://github.com/emilybache/Necklace-Refactoring-Kata
// https://github.com/emilybache/DeliveryController-Refactoring-Kata/tree/main
// https://github.com/emilybache/Racing-Car-Katas
// https://github.com/emilybache/CustomerSync-Refactoring-Kata
// https://github.com/emilybache/Email-Sender-Refactoring-Kata