
uk.co.mruoc.camunda.client.CamundaModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-rest-client Show documentation
Show all versions of camunda-rest-client Show documentation
Template repo to speed up creating new library projects
The newest version!
package uk.co.mruoc.camunda.client;
import com.fasterxml.jackson.core.Version;
import com.fasterxml.jackson.databind.Module;
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import java.util.Collections;
public class CamundaModule extends SimpleModule {
public CamundaModule() {
super("camunda-module", Version.unknownVersion());
}
@Override
public Iterable extends Module> getDependencies() {
return Collections.singleton(new JavaTimeModule());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy