Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个模块,gradle sub-app:build它在./dist文件夹中创建了一个pom.xml. POM 包含所有依赖项,即使它们都包含在 JAR 中。我希望我pom.xml的<dependencies>部分是空的,因为在运行 JAR 时我不需要下载这些东西。
gradle sub-app:build
./dist
pom.xml
<dependencies>
这是一个 Spring Boot 应用程序。我正在使用影子 JAR 来创建胖 JAR。难道我做错了什么?