Skip to content

Commit 7f97c09

Browse files
k-wallSamBarker
authored andcommitted
[FLINK-36332] Make existing dependency manipulation have project wide scope
1 parent eede213 commit 7f97c09

File tree

3 files changed

+27
-22
lines changed

3 files changed

+27
-22
lines changed

flink-kubernetes-operator-api/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,6 @@ under the License.
6363
<scope>provided</scope>
6464
</dependency>
6565

66-
<dependency>
67-
<groupId>io.fabric8</groupId>
68-
<artifactId>kubernetes-client</artifactId>
69-
<version>${fabric8.version}</version>
70-
<exclusions>
71-
<exclusion>
72-
<groupId>com.squareup.okhttp3</groupId>
73-
<artifactId>*</artifactId>
74-
</exclusion>
75-
<exclusion>
76-
<groupId>io.fabric8</groupId>
77-
<artifactId>kubernetes-httpclient-okhttp</artifactId>
78-
</exclusion>
79-
</exclusions>
80-
</dependency>
81-
8266
<!-- Utils -->
8367
<dependency>
8468
<groupId>org.apache.commons</groupId>

flink-kubernetes-webhook/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,6 @@ under the License.
6363
<artifactId>kubernetes-server-mock</artifactId>
6464
<version>${fabric8.version}</version>
6565
<scope>test</scope>
66-
<exclusions>
67-
<exclusion>
68-
<groupId>com.squareup.okhttp3</groupId>
69-
<artifactId>mockwebserver</artifactId>
70-
</exclusion>
71-
</exclusions>
7266
</dependency>
7367

7468
<dependency>

pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,33 @@ under the License.
133133
<type>pom</type>
134134
<scope>import</scope>
135135
</dependency>
136+
<dependency>
137+
<groupId>io.fabric8</groupId>
138+
<artifactId>kubernetes-client</artifactId>
139+
<version>${fabric8.version}</version>
140+
<exclusions>
141+
<exclusion>
142+
<groupId>com.squareup.okhttp3</groupId>
143+
<artifactId>*</artifactId>
144+
</exclusion>
145+
<exclusion>
146+
<groupId>io.fabric8</groupId>
147+
<artifactId>kubernetes-httpclient-okhttp</artifactId>
148+
</exclusion>
149+
</exclusions>
150+
</dependency>
151+
<dependency>
152+
<groupId>io.fabric8</groupId>
153+
<artifactId>kubernetes-server-mock</artifactId>
154+
<version>${fabric8.version}</version>
155+
<scope>test</scope>
156+
<exclusions>
157+
<exclusion>
158+
<groupId>com.squareup.okhttp3</groupId>
159+
<artifactId>mockwebserver</artifactId>
160+
</exclusion>
161+
</exclusions>
162+
</dependency>
136163
</dependencies>
137164
</dependencyManagement>
138165

0 commit comments

Comments
 (0)