Skip to content

Commit

Permalink
Merge branch 'master' into #848-update-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
piotradamczyk5 authored Sep 18, 2020
2 parents 6964636 + fd3a36c commit 025ba97
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
labels: |
automated pr
release
reviewers: bootstraponline,jan-gogo,pawelpasterz,adamfilipow92,piotradamczyk5,Sloox,axelzuziak-gogo
reviewers:
draft: false
1 change: 0 additions & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ object Versions {
// https://github.com/ben-manes/gradle-versions-plugin/releases
const val BEN_MANES = "0.28.0"

// https://github.com/Guardsquare/proguard
const val PROGUARD = "7.0.0"

// ============== flank-scripts ==============
Expand Down
19 changes: 0 additions & 19 deletions test_runner/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ shadowJar.apply {
exclude(dependency(Dependencies.TRUTH))
exclude(dependency(Dependencies.MOCKK))
exclude(dependency(Dependencies.JUNIT))

exclude(dependency(Dependencies.PROGUARD))
exclude(dependency(Dependencies.DETEKT_FORMATTING))
}
Expand Down Expand Up @@ -239,7 +238,6 @@ dependencies {

implementation(Dependencies.JSOUP)
implementation(Dependencies.OKHTTP)

detektPlugins(Dependencies.DETEKT_FORMATTING)

testImplementation(Dependencies.JUNIT)
Expand All @@ -248,7 +246,6 @@ dependencies {
testImplementation(Dependencies.MOCKK)

implementation(Dependencies.COMMON_TEXT)

implementation(Dependencies.JANSI)
}

Expand Down Expand Up @@ -284,23 +281,7 @@ val flankFullRun by tasks.registering(Exec::class) {
group = "Build"
description = "Perform full test_runner run"
commandLine = listOf("./bash/update_flank.sh")
}

tasks.create("applyProguard", proguard.gradle.ProGuardTask::class.java) {
dependsOn("updateFlank")
description = "Apply proguard to flank and create a minimized jar"
dontwarn()
injars("./build/libs/flank.jar")
outjars("./build/libs/flank-proguard.jar")
libraryjars("${System.getProperty("java.home")}/lib/rt.jar")
libraryjars("./build/libs/flank-sources.jar")
configuration("./proguard/config.pro")
doLast {
copy {
from(file("$buildDir/libs/flank-proguard.jar"))
into(file("./bash/"))
}
}
}

// begin --- ASCII doc generation ---
Expand Down

0 comments on commit 025ba97

Please sign in to comment.