@@ -81,7 +81,7 @@ dependencies {
81
81
82
82
configurations {
83
83
implementation {
84
- exclude group : ' org.slf4j' , module : ' slf4j-api'
84
+ exclude group : " org.slf4j" , module : " slf4j-api"
85
85
exclude group : " org.jetbrains.kotlin" , module : " kotlin-stdlib"
86
86
}
87
87
@@ -127,13 +127,13 @@ test {
127
127
128
128
intellij {
129
129
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"
131
131
plugins = [" yaml" , " com.redhat.devtools.intellij.telemetry:${ telemetryPluginVersion} " ]
132
132
updateSinceUntilBuild = false
133
133
}
134
134
135
135
runIde {
136
- systemProperties[' com.redhat.devtools.intellij.telemetry.mode' ] = ' debug'
136
+ systemProperties[" com.redhat.devtools.intellij.telemetry.mode" ] = " debug"
137
137
}
138
138
139
139
patchPluginXml {
@@ -151,7 +151,7 @@ publishPlugin {
151
151
152
152
runIdeForUiTests {
153
153
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"
155
155
}
156
156
157
157
task generateSchemas {
@@ -171,8 +171,8 @@ task generateSchemas {
171
171
* 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
172
172
*/
173
173
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
176
176
}
177
177
if (isSuccess(process. exitValue)) {
178
178
createIndexFile(" ${ projectDir} /${ destination} " )
@@ -232,12 +232,12 @@ repositories {
232
232
mavenLocal()
233
233
mavenCentral()
234
234
maven {
235
- url ' https://repository.jboss.org'
235
+ url " https://repository.jboss.org"
236
236
}
237
237
maven {
238
- url ' https://packages.jetbrains.team/maven/p/ij/intellij-dependencies'
238
+ url " https://packages.jetbrains.team/maven/p/ij/intellij-dependencies"
239
239
}
240
240
}
241
241
242
- group ' com.redhat.devtools.intellij'
242
+ group " com.redhat.devtools.intellij"
243
243
version projectVersion
0 commit comments