我收到错误消息Could not find Janino library on the class path. Skipping conditional processing.
我应该在classpath中包含哪些内容来修复此问题(lib和版本)?
答案 0 :(得分:16)
回退requires the Janino library以进行条件记录。如果您没有在配置文件中使用结构,则不需要它。
如果您正在使用条件,则需要添加Janino依赖项。您可以将其添加到pom.xml文件以获取依赖项:
<!-- The org.codehaus.janino:commons-compiler:2.6.1 dependency -->
<!-- will be automatically pulled in by Maven's transitivity rules -->
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
<version>2.6.1</version>
</dependency>
我认为这个问题与this one重复。