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 found a solution, Gradle generat iwf-java-sdk-2.4.0-plain.jar , Maven only default catch iwf-java-sdk-2.4.0.jar, so that's the problem.
Change build.gradle, jar section add archiveClassifier = ''
then Gradle will generat iwf-java-sdk-2.4.0.jar
pom.xml
<dependency> <artifactId>iwf-java-sdk</artifactId> <groupId>io.iworkflow</groupId> <type>pom</type> <version>2.4.0</version> </dependency>
But using gradle everything is OK!
The text was updated successfully, but these errors were encountered: