Allow proto-schema-compatibility-maven-plugin to be skipped with property (#33693)
Closes #33692 Signed-off-by: Ryan Emerson <remerson@redhat.com>
This commit is contained in:
parent
03b5ba3462
commit
42484bd884
2 changed files with 3 additions and 1 deletions
|
@ -106,7 +106,7 @@
|
||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
<configuration>
|
<configuration combine.self="append">
|
||||||
<remoteLockFiles>https://raw.githubusercontent.com/keycloak/keycloak/refs/heads/release/26.0/model/infinispan/proto.lock</remoteLockFiles>
|
<remoteLockFiles>https://raw.githubusercontent.com/keycloak/keycloak/refs/heads/release/26.0/model/infinispan/proto.lock</remoteLockFiles>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -242,6 +242,7 @@
|
||||||
|
|
||||||
<!-- Set to true on release to update proto.lock files -->
|
<!-- Set to true on release to update proto.lock files -->
|
||||||
<commitProtoLockChanges>false</commitProtoLockChanges>
|
<commitProtoLockChanges>false</commitProtoLockChanges>
|
||||||
|
<skipProtoLock>false</skipProtoLock>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<url>http://keycloak.org</url>
|
<url>http://keycloak.org</url>
|
||||||
|
@ -1564,6 +1565,7 @@
|
||||||
<version>${protostream.plugin.version}</version>
|
<version>${protostream.plugin.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<commitProtoLock>${commitProtoLockChanges}</commitProtoLock>
|
<commitProtoLock>${commitProtoLockChanges}</commitProtoLock>
|
||||||
|
<skip>${skipProtoLock}</skip>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
Loading…
Reference in a new issue