使用 Gradle 将资源和配置文件添加到 JAR 中

如何使用 gradle 将配置文件或任何其他资源添加到 jar 中?

我的项目结构:

Src/main/Java/com/perseus/. . ——-Java 包(源文件)

Src/main/java/config/* . xml ——-Spring 配置文件

预期罐子结构:

Com/perseus/. . ——-Java 包(类文件)

Config/* . xml ——-Spring 配置文件

188347 次浏览

By default any files you add to src/main/resources will be included in the jar.

If you need to change that behavior for whatever reason, you can do so by configuring sourceSets.

This part of the documentation has all the details

Move the config files from src/main/java to src/main/resources.

Thanks guys, I was migrating an existing project to Gradle and didn't like the idea of changing the project structure that much.

I have figured it out, thought this information could be useful to beginners.

Here is a sample task from my 'build.gradle':

version = '1.0.0'


jar {
baseName = 'analytics'
from('src/main/java') {
include 'config/**/*.xml'
}


manifest {
attributes 'Implementation-Title': 'Analytics Library', 'Implementation-Version': version
}
}

I ran into the same problem. I had a PNG file in a Java package and it wasn't exported in the final JAR along with the sources, which caused the app to crash upon start (file not found).

None of the answers above solved my problem but I found the solution on the Gradle forums. I added the following to my build.gradle file :

sourceSets.main.resources.srcDirs = [ "src/" ]
sourceSets.main.resources.includes = [ "**/*.png" ]

It tells Gradle to look for resources in the src folder, and ask it to include only PNG files.

EDIT: Beware that if you're using Eclipse, this will break your run configurations and you'll get a main class not found error when trying to run your program. To fix that, the only solution I've found is to move the image(s) to another directory, res/ for example, and to set it as srcDirs instead of src/.

I came across this post searching how to add an extra directory for resources. I found a solution that may be useful to someone. Here is my final configuration to get that:

sourceSets {
main {
resources {
srcDirs "src/main/resources", "src/main/configs"
}
}
}

Be aware that the path under src/main/resources must match the package path of your .class files wishing to access the resource. See my answer here.

As I have answered here, for more granularity while configuring the resource directories it's also possible to use srcDir.

sourceSets {
main {
resources {
srcDir "src/main/resources"


srcDir "src/main"
include "configs/**/*.xml"
}
}
}

So, if you have src/main/java/config/*.xml jar structure will have configs/*.xml as asked.

This is for Kotlin DSL (build.gradle.kts).

Add the following code to your subproject or app build.gradle.kts file:

sourceSets {
main {
resources {
srcDirs("src/main/configs", "src/main/misc")
}
}
// OR another notation
// main.get().resources.srcDirs("src/main/configs", "src/main/misc")
}

As mentioned by other answers, files in src/main/resources/ are automatically added to JAR. The srcDirs() function in above code adds its given paths to that existing path so files in those directories will be included in the JAR as well. You can add as many entries as you want.

Note that after adding the above code and syncing your changes with the IDE, some IDEs like IntelliJ IDEA and Android Studio show a helpful icon for those directories to indicate they are resources root directories:

A directory added as resources root in Gradle shown in IntelliJ IDEA