我终于设法解决了:
事实证明birt及其依赖项只是添加了太多的库,而classpath变得对于Windows命令来说太长了。此外,birt库具有愚蠢的长名称。
使用这种依赖关系解决了这个问题(我只需要运行时),我创建了lib和birt目录,并将jar自己放置在其中:
<dependency> <groupId>org.eclipse.birt.runtime</groupId> <artifactId>org.eclipse.birt.runtime</artifactId> <version>4.4.1</version> <scope>system</scope> <systemPath>${basedir}/lib/birt/birt.runtime-4.4.1.jar</systemPath></dependency>


