Skip to content

Commit 9a0f0ca

Browse files
authored
Moved access-operator-api dep to systemtest (#11905)
Signed-off-by: Paolo Patierno <[email protected]>
1 parent e4a9e63 commit 9a0f0ca

File tree

2 files changed

+24
-28
lines changed

2 files changed

+24
-28
lines changed

pom.xml

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,6 @@
3939
</developer>
4040
</developers>
4141

42-
<repositories>
43-
<repository>
44-
<!--
45-
Until there is a new release of Kafka Access Operator we are using the Sonatype repository with its SNAPSHOT.
46-
Tracked in https://github.com/strimzi/strimzi-kafka-operator/issues/11207.
47-
-->
48-
<id>oss-sonatype</id>
49-
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
50-
<releases>
51-
<enabled>false</enabled>
52-
</releases>
53-
<snapshots>
54-
<enabled>true</enabled>
55-
</snapshots>
56-
</repository>
57-
</repositories>
58-
5942
<properties>
6043
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6144
<maven.compiler.release>17</maven.compiler.release>
@@ -135,12 +118,6 @@
135118
<skodjob.test-frame.version>1.1.0</skodjob.test-frame.version>
136119
<skodjob-doc.version>0.4.0</skodjob-doc.version>
137120
<helm-client.version>0.0.15</helm-client.version>
138-
<!--
139-
Currently, there are no released versions in Maven repository of this module,
140-
using SNAPSHOT for having the `api` module available and usable in the STs.
141-
Tracked in https://github.com/strimzi/strimzi-kafka-operator/issues/11207.
142-
-->
143-
<access-operator.version>0.2.0-SNAPSHOT</access-operator.version>
144121
<!-- properties to skip surefire tests during failsafe execution -->
145122
<skipTests>false</skipTests>
146123
<skip.surefire.tests>${skipTests}</skip.surefire.tests>
@@ -824,11 +801,6 @@
824801
<artifactId>docker-java-api</artifactId>
825802
<version>${docker-java.version}</version>
826803
</dependency>
827-
<dependency>
828-
<groupId>io.strimzi.access-operator</groupId>
829-
<artifactId>api</artifactId>
830-
<version>${access-operator.version}</version>
831-
</dependency>
832804
</dependencies>
833805
</dependencyManagement>
834806

systemtest/pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,34 @@
1414
<properties>
1515
<skipTests>true</skipTests>
1616
<failsafe.forkCount>0</failsafe.forkCount>
17+
<!--
18+
Currently, there are no released versions in Maven repository of this module,
19+
using SNAPSHOT for having the `api` module available and usable in the STs.
20+
Tracked in https://github.com/strimzi/strimzi-kafka-operator/issues/11207.
21+
-->
22+
<access-operator.version>0.2.0-SNAPSHOT</access-operator.version>
1723

1824
<!-- Points to the root directory of the Strimzi project directory and can be used for fixed location to configuration files -->
1925
<strimziRootDirectory>${basedir}${file.separator}..</strimziRootDirectory>
2026
</properties>
2127

28+
<repositories>
29+
<repository>
30+
<!--
31+
Until there is a new release of Kafka Access Operator we are using the Sonatype repository with its SNAPSHOT.
32+
Tracked in https://github.com/strimzi/strimzi-kafka-operator/issues/11207.
33+
-->
34+
<id>oss-sonatype</id>
35+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
36+
<releases>
37+
<enabled>false</enabled>
38+
</releases>
39+
<snapshots>
40+
<enabled>true</enabled>
41+
</snapshots>
42+
</repository>
43+
</repositories>
44+
2245
<dependencies>
2346
<dependency>
2447
<groupId>io.strimzi</groupId>
@@ -260,6 +283,7 @@
260283
<dependency>
261284
<groupId>io.strimzi.access-operator</groupId>
262285
<artifactId>api</artifactId>
286+
<version>${access-operator.version}</version>
263287
</dependency>
264288
<dependency>
265289
<groupId>com.marcnuri.helm-java</groupId>

0 commit comments

Comments
 (0)