Skip to content

Commit a37a068

Browse files
committed
Make crdCustomizations optional
1 parent 947a619 commit a37a068

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

operator-gen-maven-plugin/src/main/java/org/acme/Configuration.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,12 @@ public Config getConfig() {
4545
}
4646

4747
public List<String> getIgnoreProps() {
48-
String ignoreProps = crdCustomizations.get("ignoreProps").toString();
49-
return Arrays.asList(ignoreProps.split(","));
48+
if (crdCustomizations.get("ignoreProps") != null) {
49+
String ignoreProps = crdCustomizations.get("ignoreProps").toString();
50+
return Arrays.asList(ignoreProps.split(","));
51+
} else {
52+
return Collections.emptyList();
53+
}
5054
}
5155

5256
}

operator-gen-maven-plugin/src/main/java/org/acme/OperatorGenMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class OperatorGenMojo
6161
private List<String> pathParamMappings = null;
6262

6363
@Parameter(property = "crdCustomizations", required = false)
64-
private Properties crdCustomizations = null;
64+
private Properties crdCustomizations = new Properties();
6565

6666
/**
6767
* Location of the generated source code.

0 commit comments

Comments
 (0)