removes the filtering of erroneous enum values (#21790)

With the update to fabric8 6.7.2, this filtering is no longer needed

Closes #20935
This commit is contained in:
Steven Hawkins 2023-07-21 04:49:01 -04:00 committed by GitHub
parent ef19e08814
commit 3cbd4eb10a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -247,27 +247,6 @@
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>filterEnum</id>
<phase>package</phase>
<configuration>
<target>
<replaceregexp file="${project.build.directory}/kubernetes/keycloakrealmimports.k8s.keycloak.org-v1.yml"
match="[^\n]*- ENUM\$VALUES\s*\n"
flags="g"
replace=""/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>