gpt4 book ai didi

maven - 是否可以在类似于 Maven install :install-file? 的 gradle 中将文件安装到本地缓存

转载 作者:行者123 更新时间:2023-12-03 05:49:25 26 4
gpt4 key购买 nike

目前我正在使用 maven 将此文件安装到 maven 本地 repo,然后在我的应用程序 gradle 构建中,我有这个 Artifact 的依赖项。

    mvn install:install-file -Dfile=locallib/wlthint3client.jar -DgeneratePom=true -DgroupId=com.oracle.weblogic -DartifactId=wlthint3client -Dversion=10.3 -Dpackaging=jar

build.gradle 中的依赖
    compile("com.oracle.weblogic:wlthint3client:10.3")

有没有办法使用 gradle 将文件安装到 gradle 本地缓存中?

提前致谢。

-维迪亚

最佳答案

我有一个解决方法。我正在使用 gradle 本身将其推送到 maven 本地仓库。
来自 build.gradle 的片段:

configurations {
resultArchives
}

uploadResultArchives {
repositories {
mavenDeployer {
repository(url: mavenLocal().url)
pom.version = '10.3'
pom.artifactId = 'wlthint3client'
pom.groupId = 'com.oracle.weblogic'
}
}
}

artifacts {
resultArchives file: file('locallib/wlthint3client.jar')
}
要将 Artifact 推送到 Maven 本地仓库:
gradle uploadResultArchives

关于maven - 是否可以在类似于 Maven install :install-file? 的 gradle 中将文件安装到本地缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48575603/

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