gpt4 book ai didi

gradle - 您如何在 Gradle 中将 Web 托管的 .jar 文件作为依赖项处理?

转载 作者:行者123 更新时间:2023-12-03 03:21:51 28 4
gpt4 key购买 nike

我对 JVM 世界还很陌生,我发现 Maven 和 Gradle 是处理构建和依赖关系的非常出色的工具。

我需要在我的解决方案中合并两个 jar 文件。它们不托管在任何 Maven 存储库中。我必须使用 libs 文件夹并在开发人员之间或在 repo 中共享文件吗?

jar 文件不受我控制,我不想经历在 Maven Central 或类似的东西上放置一些东西的喧嚣。我相信 jar 文件的 url 是相当持久的。

最佳答案

第一种解决方案
不要离开 Gradle。相反,请尝试使用文件集合。它应该工作!但不适合我,第二个解决方案

 dependencies {
def webHostedJarFiles = ["http://url.to.jar", "http://url.to.second.jar"]
.collect{fileName->new File(fileName)}

compile([
files{webHostedJarFiles},
'commons-validator:commons-validator:1.4.1'
/* and all the other Maven dependencies...*/])
}
将 URL 直接放在 files 方法中会给您一个 Cannot convert URL "http://url.to.jar"to a file 异常
由于某种原因,这对我不起作用。依赖项已下载并显示在 IntelliJ 的 gradle 插件中,但编译时编译器似乎无法找到。
第二种解决方案
不要离开 Gradle。而是将文件下载到 libs 文件夹中。
复制任务:
task downloadJarsToLibs(){
def f = new File('libs/myFile.jar')
if (!f.exists()) {
new URL('http://path.to/myFile.jar').withInputStream{ i -> f.withOutputStream{ it << i }}
}
}
依赖项:
dependencies {
compile([
fileTree(dir: 'libs', include: ['*.jar']),
'commons-validator:commons-validator:1.4.1'
/* and all the other Maven dependencies...*/])
}
第三种解决方案(@RaGe 的 Cortesey)
示例文件:

http://exampe.com/uda/virtuoso/7.2/rdfproviders/jena/210/virt_jena2.jar
http://exampe.com/uda/virtuoso/7.2/jdbc/virtjdbc4.jar


构建.gradle:
repositories {
ivy {
url 'http://example.com/'
layout 'pattern', {
artifact '/uda/[organisation]/7.2/[module]/[revision].[ext]'
}
// This is required in Gradle 6.0+ as metadata file (ivy.xml)
// is mandatory. Docs linked below this code section
metadataSources { artifact() }
}
mavenCentral()
}

dependencies {
compile 'virtuoso:rdfproviders/jena210:virt_jena2:jar', 'virtuoso:jdbc:virtjdbc4:jar'

}
所需元数据的引用 here
不幸的是,这似乎不适用于我的设置,但 Gradle 很高兴并且在需要时下载文件(因为它们已被缓存)

关于gradle - 您如何在 Gradle 中将 Web 托管的 .jar 文件作为依赖项处理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34678811/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com