Skip to content

Commit

Permalink
add deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mokevnin committed Nov 29, 2023
1 parent 2ebbd94 commit 8cd8f6d
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,21 @@ plugins {
}

group = "io.hexlet"

version = "1.0-SNAPSHOT"

application { mainClass.set("io.hexlet.Application") }

repositories {
mavenCentral()
}
repositories { mavenCentral() }

dependencies {
implementation("org.apache.commons:commons-lang3:3.14.0")
implementation("org.apache.commons:commons-collections4:4.4")
implementation("org.apache.commons:commons-lang3:3.14.0")
testImplementation(platform("org.junit:junit-bom:5.10.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation(platform("org.junit:junit-bom:5.10.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
implementation("org.apache.commons:commons-lang3:3.14.0")
}

tasks.test {
Expand All @@ -37,8 +40,4 @@ tasks.test {
}
}

tasks.jacocoTestReport {
reports {
xml.required.set(true)
}
}
tasks.jacocoTestReport { reports { xml.required.set(true) } }

0 comments on commit 8cd8f6d

Please sign in to comment.