Skip to content

Commit f765a28

Browse files
committed
fix: snapshot release issue
1 parent 5f9cfad commit f765a28

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

core/src/main/java/io/javaoperatorsdk/webhook/conversion/AsyncConversionController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
public class AsyncConversionController implements AsyncConversionRequestHandler {
1919

2020
private static final Logger log = LoggerFactory.getLogger(ConversionController.class);
21-
21+
2222
@SuppressWarnings("rawtypes")
2323
private final Map<String, AsyncMapper> mappers = new HashMap<>();
2424

core/src/main/java/io/javaoperatorsdk/webhook/conversion/TargetVersion.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
* The target version of the resource this mapper supports. Example values: "v1","v1beta1". This
1414
* is not the full API Version just the version suffix, for example only the "v1" of api version:
1515
* "apiextensions.k8s.io/v1"
16+
*
17+
* @return version
1618
**/
1719
String value();
1820

samples/quarkus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>admission-controller-framework-samples</artifactId>
88
<version>0.2.1-SNAPSHOT</version>
99
</parent>
10-
<groupId>webhook.sample</groupId>
10+
<groupId>io.javaoperatorsdk.admissioncontroller.sample</groupId>
1111
<artifactId>quarkus-sample</artifactId>
1212
<name>Admission Controller Framework - Samples - Quarkus</name>
1313
<properties>

samples/spring-boot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>0.2.1-SNAPSHOT</version>
99
</parent>
1010

11-
<groupId>webhook.sample</groupId>
11+
<groupId>io.javaoperatorsdk.admissioncontroller.sample</groupId>
1212
<artifactId>spring-boot-sample</artifactId>
1313
<version>0.2.1-SNAPSHOT</version>
1414
<name>Admission Controller Framework - Samples - Spring Boot</name>

0 commit comments

Comments
 (0)