haoyuche commented on issue #23568:
URL: https://github.com/apache/beam/issues/23568#issuecomment-1341662329

   Actually in my case I changed fastxml libs both to runtime scope and it 
works without need to set the userClassPathFirst.
   ```
                   <dependency>
                       <groupId>com.fasterxml.jackson.module</groupId>
                       <artifactId>jackson-module-scala_2.12</artifactId>
                       <version>${jackson.version}</version>
                       <exclusions>
                           <exclusion>
                               <groupId>org.scala-lang</groupId>
                               <artifactId>scala-library</artifactId>
                           </exclusion>
                       </exclusions>
                       <scope>runtime</scope>
                   </dependency>
                   <dependency>
                       <groupId>org.scala-lang</groupId>
                       <artifactId>scala-library</artifactId>
                       <version>2.12.10</version>
                       <scope>test</scope>
                   </dependency>
                   <dependency>
                       <groupId>com.fasterxml.jackson.core</groupId>
                       <artifactId>jackson-databind</artifactId>
                       <version>${jackson.version}</version>
                       <scope>runtime</scope>
                   </dependency>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to