Skip to content

Commit 7dab79d

Browse files
committed
fix dependency naming convention, add missing license
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 6f54ba9 commit 7dab79d

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ shadow-jar-plugin = "8.3.6"
4242
kubernetes-client = { group = "io.fabric8", name = "kubernetes-client", version.ref = "fabric8" }
4343
kubernetes-httpclient-okhttp = { group = "io.fabric8", name = "kubernetes-httpclient-okhttp", version.ref = "fabric8" }
4444
kubernetes-server-mock = { group = "io.fabric8", name = "kubernetes-server-mock", version.ref = "fabric8" }
45-
kube-api-test = {group = "io.fabric8", name = "kube-api-test-client-inject", version.ref = "fabric8"}
45+
kube-api-test-client-inject = {group = "io.fabric8", name = "kube-api-test-client-inject", version.ref = "fabric8"}
4646
crd-generator-apt = { group = "io.fabric8", name = "crd-generator-apt", version.ref = "fabric8" }
4747
okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
4848
mockwebserver = { group = "com.squareup.okhttp3", name = "mockwebserver", version.ref = "okhttp" }

spark-operator/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ dependencies {
8080
testRuntimeOnly(libs.junit.platform.launcher)
8181

8282
testImplementation(libs.mockito.core)
83-
testImplementation(libs.kube.api.test)
83+
testImplementation(libs.kube.api.test.client.inject)
8484
}
8585

8686
test {

spark-operator/src/test/java/org/apache/spark/k8s/operator/config/SparkOperatorConfigMapReconcilerTest.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
120
package org.apache.spark.k8s.operator.config;
221

322
import static org.apache.spark.k8s.operator.config.SparkOperatorConf.RECONCILER_INTERVAL_SECONDS;

0 commit comments

Comments
 (0)