具有依赖项的Intellij Grade Build Jar

时间:2019-02-26 20:41:13

标签: java gradle intellij-idea jar debian

我想用Gradle在IntelliJ IDEA中构建一个jar文件。 当我在Intellij中运行代码时,一切正常 但是当我运行jar文件时,出现错误:

SQLExecption: No suitable driver found for jdbc:sqlite:/applications/elite-dangerous/database/ED_Database.db

我按下构建按钮来构建罐子投掷。

enter image description here

enter image description here

这对我来说很奇怪,因为当我在IntelliJ IDEA中运行它时,它工作得很好。

1 个答案:

答案 0 :(得分:0)

使用实现配置包含的依赖项未包含在Jar中,这使得它们在运行时不可用。所以,我想可能是这种情况。您可以尝试将实现更改为编译依赖关系(已弃用,因此不推荐使用),也可以如下所示将依赖关系包含在jar中

 jar {
    manifest {
        attributes 'Main-Class': 'eliteDangerousRestUpdater.Main'
    }
    from {
        compileJava.classpath.collect {
            it.isDirectory() ? it : zipTree(it)
        }
    }
}