Skip to content

Commit

Permalink
build: remove sonar plugin from gradle config (fix #140)
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Dec 5, 2016
1 parent b2f41e9 commit c594137
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 18 deletions.
10 changes: 0 additions & 10 deletions build.gradle
Expand Up @@ -11,8 +11,6 @@ plugins {
// id "com.github.ben-manes.versions" version "0.8"
}

apply plugin: 'sonar-runner'

ext.jadxVersion = file('version').readLines().get(0)
version = jadxVersion

Expand Down Expand Up @@ -65,14 +63,6 @@ subprojects {
}
}

/* Sonar runner configuration */
repositories {
mavenCentral()
}
sonarRunner {
toolVersion = '2.4'
}

task copyArtifacts(type: Sync, dependsOn: ['jadx-cli:installDist', 'jadx-gui:installDist']) {
destinationDir file("$buildDir/jadx")
['jadx-cli', 'jadx-gui'].each {
Expand Down
4 changes: 0 additions & 4 deletions jadx-samples/build.gradle
Expand Up @@ -13,10 +13,6 @@ compileJava {
options.compilerArgs << '-g:none'
}

sonarRunner {
skipProject = true
}

task samplesRun(type: JavaExec, dependsOn: compileJava) {
classpath = sourceSets.main.output
main = mainSamplesClass
Expand Down
4 changes: 0 additions & 4 deletions jadx-test-app/build.gradle
Expand Up @@ -12,10 +12,6 @@ dependencies {
compile(project(":jadx-cli"))
}

sonarRunner {
skipProject = true
}

task deleteTmp(type:Delete) {
delete testAppTmpDir
}
Expand Down

0 comments on commit c594137

Please sign in to comment.