From 44d7b56ad88ce33471a9d8bbca701e28b9c394ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1si=20M=C3=A1t=C3=A9?= Date: Tue, 21 May 2024 16:14:29 +0200 Subject: [PATCH] add sonarcloud to gradle --- test/build.gradle | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/test/build.gradle b/test/build.gradle index c5e527a..fe6fc1f 100644 --- a/test/build.gradle +++ b/test/build.gradle @@ -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" - + } } @@ -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" + } +}