Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kjozsa committed Sep 16, 2024
1 parent 4d8abe5 commit 7955d5e
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 134 deletions.
12 changes: 9 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
Expand Down Expand Up @@ -106,7 +106,7 @@ plugins {
// id 'org.asciidoctor.jvm.gems' version '3.3.2' apply false
id 'org.asciidoctor.kindlegen.base' version '3.2.0' apply false
id 'com.google.cloud.tools.jib' version '3.4.3' apply false
id 'org.sonarqube' version '4.4.1.3373'
id 'org.sonarqube' version '4.4.1.3373' apply false
id 'com.github.andygoossens.modernizer' version '1.9.3' apply false
// TODO: upgrade to 6.0.4
id 'com.github.spotbugs' version '6.0.22' apply false
Expand Down Expand Up @@ -325,7 +325,6 @@ configure(project.fineractJavaProjects) {

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'checkstyle'
apply plugin: 'jacoco'
apply plugin: 'net.ltgt.errorprone'
Expand Down Expand Up @@ -806,3 +805,10 @@ task printSourceSetInformation() {
}
}
}

if ('sonarqube' in gradle.startParameter.taskNames) {
apply plugin: 'org.sonarqube'
tasks.named('sonarqube') {
dependsOn build
}
}
Loading

0 comments on commit 7955d5e

Please sign in to comment.