Skip to content

Commit

Permalink
included stax2 in lib/core to fix NoSuchMethodError in StAX transform.
Browse files Browse the repository at this point in the history
…fixes #4597
  • Loading branch information
bamaer committed Nov 21, 2024
1 parent 70eaed8 commit 96361ca
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions plugins/transforms/xml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<properties>
<dom4j.version>2.1.3</dom4j.version>
<jaxen.version>1.2.0</jaxen.version>
<stax2.version>4.2.2</stax2.version>
</properties>

<dependencyManagement>
Expand All @@ -52,6 +53,11 @@
<artifactId>jaxen</artifactId>
<version>${jaxen.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>stax2-api</artifactId>
<version>${stax2.version}</version>
</dependency>
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions plugins/transforms/xml/src/assembly/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,11 @@
</includes>
<outputDirectory>lib/core</outputDirectory>
</dependencySet>
<dependencySet>
<includes>
<include>org.codehaus.woodstox:stax2-api:jar</include>
</includes>
<outputDirectory>lib/core</outputDirectory>
</dependencySet>
</dependencySets>
</assembly>

0 comments on commit 96361ca

Please sign in to comment.