build: remove sonar plugin from gradle config (fix #140)

This commit is contained in:
Skylot
2016-12-05 10:48:56 +03:00
parent b2f41e95bf
commit c594137c19
3 changed files with 0 additions and 18 deletions
-10
View File
@@ -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
@@ -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 {
-4
View File
@@ -13,10 +13,6 @@ compileJava {
options.compilerArgs << '-g:none'
}
sonarRunner {
skipProject = true
}
task samplesRun(type: JavaExec, dependsOn: compileJava) {
classpath = sourceSets.main.output
main = mainSamplesClass
-4
View File
@@ -12,10 +12,6 @@ dependencies {
compile(project(":jadx-cli"))
}
sonarRunner {
skipProject = true
}
task deleteTmp(type:Delete) {
delete testAppTmpDir
}