Skip to content

Commit

Permalink
fix RB issue on JAXB generated source (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy authored and coheigea committed Dec 4, 2023
1 parent 958fb2c commit 91f806c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,23 @@
<regex>true</regex>
</configuration>
</execution>
<execution>
<id>types-workaround-xmldsig</id>
<phase>process-sources</phase>
<goals>
<goal>replace</goal>
</goals>
<configuration>
<file>${project.build.directory}/generated-sources/xjc/org/apache/xml/security/binding/xmldsig/PGPDataType.java</file>
<replacements>
<replacement>
<token>line (.+) of file:.+src/main/resources/(.+)</token>
<value>line $1 of file:src/main/resources/$2</value>
</replacement>
</replacements>
<regex>true</regex>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down

0 comments on commit 91f806c

Please sign in to comment.