Skip to content

Commit

Permalink
add sonarcloud to gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
matetamasi committed May 21, 2024
1 parent c526853 commit 44d7b56
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ allprojects {
maven { url "https://jitpack.io" }
}
dependencies {

implementation 'com.google.guava:guava:31.1-jre'
testImplementation 'junit:junit:4.13.2'
implementation 'junit:junit:4.13.2'
implementation "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
testImplementation "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"

}
}

Expand Down Expand Up @@ -74,3 +74,15 @@ project(":core") {
// implementation 'junit:junit:4.13.2'
}
}

plugins {
id "org.sonarqube" version "4.4.1.3373"
}

sonar {
properties {
property "sonar.projectKey", "BME-MIT-IET_iet-hf-2024-bubogok"
property "sonar.organization", "bme-mit-iet-org"
property "sonar.host.url", "https://sonarcloud.io"
}
}

0 comments on commit 44d7b56

Please sign in to comment.