Error expecting anything but ''\n''

I got an error
caused by: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
build file ‘/Users/steinkorsveien/Development/ATM/Bank1/build.gradle’: 11: expecting anything but ‘’\n’’; got it anyway @ line 11, column 53.
.url", “https://sonarcloud.io

My build.gradlel looks like
plugin {
id “org.sonarqube” version “2.8”
id ‘java’
id ‘checkstyle’
id ‘jacoco’
}

sonarqube {
properties {
property “sonar.sourceEncoding”, “UTF-8”
property “sonar.host.url”, “https://sonarcloud.io
property “sonar.login”, “43983a01ea79d77e7ce4931e989733cdcfb6ef47”
property “sonar.projectKey”, “Bank”
property “sonar.organization”, “steinko-github”
property “sonar.java.source”, “13”
}
}

project(":component") {
sonarqube {
properties {
property “sonar.coverage.jacoco.xmlReportPaths”, “build/reports/jacoco/test/jacocoTestReport.xml”
}

project(":acceptancetest") {
sonarqube {
skipProject = true
}
}

How do I fix this problem ?

Check that you don’t have any left and right double quote characters instead of straight double quote characters.

I can reproduce some wild behaviours with those “fancy” quotes in my build.gradle. Get rid of them :slight_smile: