Skip to content

Commit

Permalink
fix: runtime error not finding FileUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
gtramontina committed Jun 2, 2019
1 parent a49beda commit cea3acf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ compileTestKotlin { kotlinOptions.jvmTarget = "1.8" }
repositories { jcenter() }
dependencies {
implementation(group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk8", version: "1.3.31")
implementation(group: "commons-io", name: "commons-io", version: "2.6")
testImplementation(group: "io.kotlintest", name: "kotlintest-runner-junit5", version: "3.3.2")
testImplementation(group: "org.junit.jupiter", name: "junit-jupiter-api", version: "5.4.1")
testImplementation(group: "org.awaitility", name: "awaitility", version: "3.1.6")
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/gtramontina/ghooks/GHooks.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.gtramontina.ghooks

import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.internal.impldep.org.apache.commons.io.FileUtils.forceDelete
import org.apache.commons.io.FileUtils.forceDelete
import java.nio.file.Files.createSymbolicLink
import java.nio.file.Files.exists
import java.nio.file.Files.isDirectory
Expand Down

0 comments on commit cea3acf

Please # to comment.