I am trying to build a Spring boot project running on Liberty server. I was able to build the jar. When I am trying to start my server I am getting and error
In build.gradle I have added
classpath 'io.openliberty.tools:liberty-gradle-plugin:3.5.2' apply plugin: 'liberty'
I have added ServletInitializer as per the suggestion
@Configuration
public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(CaptchaLighweightApplication.class);
}
}