我正在从here运行以下命令
mvn package
该程序包已成功编译。
但是当我跑步时
java -cp target/cloak-1.0-SNAPSHOT.jar com.github.cloak.App
出现以下错误
错误:无法初始化主类com.github.cloak.App
原因:java.lang.NoClassDefFoundError:boofcv / gui / image / ImagePanel
我编译错误吗?
编辑:我没有使用Eclipse
答案 0 :(得分:1)
使用mvn exec:java
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass>com.example.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
查看此帖子
答案 1 :(得分:1)
一种方法是创建具有所有依赖项的胖子。组装插件是最简单的,将这些行添加到pom.xml中并重新打包。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.github.cloak.App</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>