Skip to content

Commit f9995f6

Browse files
committed
Bugfix release addresses issues DE62892 (#INC0055745) and DE62501 (#INC0054841)
JavaSDK- Unable to store DeviceId #INC0055745 Java SDK: Changing server end point results in error (INC0054841)
1 parent 89045ec commit f9995f6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

build.gradle

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import org.gradle.internal.os.OperatingSystem
33
buildscript {
44
dependencies {
55
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
6+
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
67
}
78
repositories {
89
mavenCentral()
@@ -14,10 +15,17 @@ group 'com.ge.predix'
1415
version '1.1.2'
1516

1617
apply plugin: 'java'
18+
apply plugin: "org.sonarqube"
1719
apply plugin: 'idea'
1820
apply plugin: 'application'
1921
apply plugin: 'javafx-gradle-plugin'
2022

23+
sonarqube {
24+
properties {
25+
property "sonar.projectName", "MLF Reference Application"
26+
property "sonar.projectKey", "MLFReferenceApplication"
27+
}
28+
}
2129
mainClassName = "com.ge.predix.mobile.ReferenceApplication"
2230
if (OperatingSystem.current().isMacOsX()) {
2331
applicationDefaultJvmArgs = ["-Djava.net.useSystemProxies=true", "-Xdock:icon=src/main/resources/icon.png", "-Xdock:name=\"MFL Reference Application\""]

0 commit comments

Comments
 (0)