我尝试将本地.jar文件依赖项添加到构建中。gradle文件:

apply plugin: 'java'

sourceSets {
    main {
        java {
            srcDir 'src/model'
        }
    }
}

dependencies {
    runtime files('libs/mnist-tools.jar', 'libs/gson-2.2.4.jar')
    runtime fileTree(dir: 'libs', include: '*.jar')
} 

您可以看到,我将.jar文件添加到这里的referencedLibraries文件夹:https://github.com/WalnutiQ/wAlnut/tree/version-2.3.1/referencedLibraries

但问题是,当我在命令行上运行命令:gradle build时,我得到以下错误:

error: package com.google.gson does not exist
import com.google.gson.Gson;

这是我的全部回购:https://github.com/WalnutiQ/wAlnut/tree/version-2.3.1


如果你真的需要从本地目录中获取。jar文件,

添加到你的模块gradle(不是应用程序的gradle文件):

repositories {
   flatDir {
       dirs("libs")
   }
}


dependencies {
   implementation("gson-2.2.4")
}

但是,作为实际maven存储库中的标准.jar,为什么不尝试一下呢?

repositories {
   mavenCentral()
}
dependencies {
   implementation("com.google.code.gson:gson:2.2.4")
}

根据文档,为本地jar依赖项使用相对路径,如下所示。

Groovy的语法:

dependencies {
    implementation files('libs/something_local.jar')
}

Kotlin 语法:

dependencies {
    implementation(files("libs/something_local.jar"))
}

您还可以这样做,这将包括本地存储库中的所有jar。这样就不必每次都指定它。

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

公认的答案是好的,但是,我需要在我的多项目Gradle构建中进行各种库配置才能使用相同的第三方Java库。

添加“rootProject美元。projectDir'到'dir'路径元素在我的'allprojects'闭包意味着每个子项目引用相同的'libs'目录,而不是该子项目的本地版本:

//gradle.build snippet
allprojects {
    ...

    repositories {
        //All sub-projects will now refer to the same 'libs' directory
        flatDir {
            dirs "$rootProject.projectDir/libs"
        }
        mavenCentral()
    }

    ...
}

编辑由Quizzie:更改“${rootProject。到$rootProject。projectDir”(适用于最新的Gradle版本)。


另一种方式:

在树视图中添加库。右键点击这个。选择菜单“添加为库”。 一个对话框出现,让你选择模块。好了,搞定了。


我无法在https://stackoverflow.com/a/20956456/1019307上得到上面的建议。不过这对我来说很管用。对于我存储在项目根目录libs/目录中的secondstring-20030401.jar文件:

repositories {
    mavenCentral()
    // Not everything is available in a Maven/Gradle repository.  Use a local 'libs/' directory for these.
    flatDir {
       dirs 'libs'
   }
}

...

compile name: 'secondstring-20030401'

一个简单的方法是

compile fileTree(include: ['*.jar'], dir: 'libs')

它会编译App中libs目录下的所有。jar文件。


这个问题已经被详细地回答了。我还想补充一些让我很惊讶的事情:

“gradle dependencies”任务没有列出任何文件依赖项。即使你可能会这么想,因为它们已经在“依赖项”块中指定了。

因此,不要依赖于它的输出来检查所引用的本地库文件是否正常工作。


Goto File -> Project Structure -> Modules -> app -> Dependencies Tab ->单击+(按钮)->选择File Dependency ->选择lib文件夹中的jar文件

该步骤将自动将您的依赖项添加到grade

非常简单的


最好的方法是在构建中添加这个功能。Gradle文件,然后点击同步选项

dependency{
    compile files('path.jar')
}

对我来说有效的解决方案是在构建中使用fileTree。gradle文件。 将需要添加为依赖项的.jar保存在libs文件夹中。在build.gradle的依赖块中给出以下代码:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

您可以尝试为Gradle重用您的本地Maven存储库:

Install the jar into your local Maven repository: mvn install:install-file -Dfile=utility.jar -DgroupId=com.company -DartifactId=utility -Dversion=0.0.1 -Dpackaging=jar Check that you have the jar installed into your ~/.m2/ local Maven repository Enable your local Maven repository in your build.gradle file: repositories { mavenCentral() mavenLocal() } dependencies { implementation ("com.company:utility:0.0.1") } Now you should have the jar enabled for implementation in your project


以下是我的工作:

compile fileTree(dir: 'libs', include: '*.jar')

参考Gradle文档。


如果您正在使用持续集成,请小心,您必须将库添加到构建服务器上的相同路径中。

出于这个原因,我宁愿将jar添加到本地存储库,当然,在构建服务器上也做同样的事情。


为那些使用Kotlin DSL的人提供的解决方案

到目前为止添加的解决方案非常适合OP,但是如果不先翻译它们,就不能用于Kotlin DSL。下面是我如何使用Kotlin DSL向我的构建添加本地.JAR的示例:

dependencies {
    compile(files("/path/to/file.jar"))
    testCompile(files("/path/to/file.jar"))
    testCompile("junit", "junit", "4.12")
}

记住,如果你使用的是Windows,你的反斜杠必须转义:

...
compile(files("C:\\path\\to\\file.jar"))
...

还要记住,引号必须是双引号,而不是单引号。


2020年编辑:

Gradle更新已经弃用了compile和testCompile,取而代之的是implementation和testImplementation。所以上面的依赖块对于当前的Gradle版本是这样的:

dependencies {
    implementation(files("/path/to/file.jar"))
    testImplementation(files("/path/to/file.jar"))
    testImplementation("junit", "junit", "4.12")
}

你可以添加jar做:

对于gradle,只需在build.gradle中放入以下代码:

dependencies {
...
compile fileTree(dir: 'lib', includes: ['suitetalk-*0.jar'])
...
}

对于maven,只需遵循以下步骤:

Intellij: 文件->项目结构->模块->依赖选项卡->点击+号-> jar和依赖->选择jar你想导入->ok ->应用(如果可见)->ok

记住,如果你在运行时得到任何java.lang.NoClassDefFoundError: Could not initialize class exception,这意味着jar中的依赖项没有安装,你必须在父项目中添加所有依赖项。


较短的版本:

dependencies {
    implementation fileTree('lib')
}

使用Kotlin DSL (build.gradle.kts)添加本地库文件的更多方法:

implementation(
    files(
        "libs/library-1.jar",
        "libs/library-2.jar",
        "$rootDir/foo/my-other-library.jar"
    )
)
implementation(
    fileTree("libs/") {
        // You can add as many include or exclude calls as you want
        include("*.jar")
        include("another-library.aar") // Some Android libraries are in AAR format
        exclude("bad-library.jar")
    }
)
implementation(
    fileTree(
        "dir" to "libs/",
        // Here, instead of repeating include or exclude, assign a list of paths
        "include" to "*.jar",
        "exclude" to listOf("bad-library-1.jar", "bad-library-2.jar")
    )
)

上面的代码假设库文件位于模块的libs/目录中(这里的模块指的是build.gradle.kts所在的目录)。

如上所示,可以在include和exclude中使用Ant模式。

有关文件依赖关系的更多信息,请参阅Gradle文档。

感谢这篇文章提供了一个有用的答案。


对于Gradle 7.4版本,使用Groovy构建文件

repositories {
    flatDir {
        dirs 'libs'
    }
}

dependencies {
    implementation ':gson-2.2.4'
}

如果您使用的是gradle 4.10或更新版本:

implementation fileTree(dir: 'libs', includes: ['*.jar'])