Skip to content

Commit bf78497

Browse files
committed
made quotes uniformous in build.gradle
Signed-off-by: Andre Dietisheim <[email protected]>
1 parent ed37f6b commit bf78497

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

build.gradle

+9-9
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ dependencies {
8181

8282
configurations {
8383
implementation {
84-
exclude group: 'org.slf4j', module: 'slf4j-api'
84+
exclude group: "org.slf4j", module: "slf4j-api"
8585
exclude group: "org.jetbrains.kotlin", module: "kotlin-stdlib"
8686
}
8787

@@ -127,13 +127,13 @@ test {
127127

128128
intellij {
129129
version = ideaVersion //for a full list of Jetbrains IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
130-
pluginName = 'Kubernetes by Red Hat'
130+
pluginName = "Kubernetes by Red Hat"
131131
plugins = ["yaml", "com.redhat.devtools.intellij.telemetry:${telemetryPluginVersion}" ]
132132
updateSinceUntilBuild = false
133133
}
134134

135135
runIde {
136-
systemProperties['com.redhat.devtools.intellij.telemetry.mode'] = 'debug'
136+
systemProperties["com.redhat.devtools.intellij.telemetry.mode"] = "debug"
137137
}
138138

139139
patchPluginXml {
@@ -151,7 +151,7 @@ publishPlugin {
151151

152152
runIdeForUiTests {
153153
systemProperty "robot-server.port", System.getProperty("robot-server.port")
154-
systemProperties['com.redhat.devtools.intellij.telemetry.mode'] = 'debug'
154+
systemProperties["com.redhat.devtools.intellij.telemetry.mode"] = "debug"
155155
}
156156

157157
task generateSchemas {
@@ -171,8 +171,8 @@ task generateSchemas {
171171
* openapi2jsonschema -o src/main/resources/schemas/k8s.io --kubernetes --expanded --stand-alone --strict https://raw.githubusercontent.com/kubernetes/kubernetes/v1.20.5/api/openapi-spec/swagger.json
172172
*/
173173
def process = exec {
174-
executable 'openapi2jsonschema'
175-
args '-o', destination, "--kubernetes", "--expanded", "--stand-alone", "--strict", url
174+
executable "openapi2jsonschema"
175+
args "-o", destination, "--kubernetes", "--expanded", "--stand-alone", "--strict", url
176176
}
177177
if (isSuccess(process.exitValue)) {
178178
createIndexFile("${projectDir}/${destination}")
@@ -232,12 +232,12 @@ repositories {
232232
mavenLocal()
233233
mavenCentral()
234234
maven {
235-
url 'https://repository.jboss.org'
235+
url "https://repository.jboss.org"
236236
}
237237
maven {
238-
url 'https://packages.jetbrains.team/maven/p/ij/intellij-dependencies'
238+
url "https://packages.jetbrains.team/maven/p/ij/intellij-dependencies"
239239
}
240240
}
241241

242-
group 'com.redhat.devtools.intellij'
242+
group "com.redhat.devtools.intellij"
243243
version projectVersion

0 commit comments

Comments
 (0)