I am writing a kotlin library that needs to be use...
# getting-started
t
I am writing a kotlin library that needs to be used from old java application as well. At the moment I am facing a
Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: kotlin/jvm/internal/Intrinsics
when instantiating
Copy code
class WebConfiguration(
	context: ApplicationContext,
	@Qualifier("mvcConversionService") conversionService: ObjectFactory<ConversionService>)
	: HateoasAwareSpringDataWebConfiguration(context, conversionService)
I would like to make my library compatible with pure java applications, is it possible? I mean, without adding kotlin stdlib to the runtime classpath of java applications