You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A workaround is to exclude it from print-lib dependencies and directly add it manually :
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>3.0.13</version>
<scope>compile</scope>
<type>pom</type>
<!-- This is for not complains in test when compile -->
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-testng</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mapfish.print</groupId>
<artifactId>print-lib</artifactId>
<version>3.29.4</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
</exclusion>
</dependency>
The text was updated successfully, but these errors were encountered:
When using print-lib as a dependency, the maven build crash because it can't found the org.codehaus.groovy:groovy-all dependency.
It appear that we have to set pom type to this dependency (cf. https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-all/3.0.13)
A workaround is to exclude it from print-lib dependencies and directly add it manually :
The text was updated successfully, but these errors were encountered: