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
I'm using wsdl2java 2.0.2, Java 17 and Gradle 8.11
I just migrated my application from joda time to java time. During this process some of my binding files changed as i had to migrate them too, so i.e. <xjc:javaType name="org.joda.time.LocalDate"... became <xjc:javaType name="java.time.LocalDate"... and so on. When running a clean build, my generated files still contained the old joda time imports. Completely clearing my local gradle cache systemwide fixed the issue.
It seems to me that changes in a binding file do not contribute to a cache key here.
The text was updated successfully, but these errors were encountered:
I'm using wsdl2java 2.0.2, Java 17 and Gradle 8.11
I just migrated my application from joda time to java time. During this process some of my binding files changed as i had to migrate them too, so i.e.
<xjc:javaType name="org.joda.time.LocalDate"...
became<xjc:javaType name="java.time.LocalDate"...
and so on. When running a clean build, my generated files still contained the old joda time imports. Completely clearing my local gradle cache systemwide fixed the issue.It seems to me that changes in a binding file do not contribute to a cache key here.
The text was updated successfully, but these errors were encountered: