gpt4 book ai didi

git - wagon-git 和 Gradle

转载 作者:太空狗 更新时间:2023-10-29 13:25:37 26 4
gpt4 key购买 nike

这个不错的小工具 promise 可以帮助我将 Artifact 上传到私有(private) Bitbucket 存储库。

http://synergian.github.io/wagon-git/bitbucket.html

我在 Gradle 构建中使用本指南时遇到问题...

我找到了这个简短而有限的例子, https://github.com/UniconLabs/ssl-utils/blob/master/build.gradle

我最不清楚的是关于如何在我的 maven 主页中准备 settings.xml 的部分。由于我使用 Gradle,我是否应该改用我的 .gradle 文件夹?

Bitbucket Private Repositories

Proceed the same way, but add basic authentication in your Maven settings.xml (usually located at your $MAVEN_HOME directory, check out http://maven.apache.org/settings.html for a full guide).

<settings>
...
<servers>
<server>
<id>your-repo-id</id>
<username>yourbitbucketusername</username>
<password>yourbitbucketpassword</password>
</server>
...
</servers>
...
</settings>

最佳答案

最简单的做法是转到您的 ~/.gradle/gradle.properties 文件,并添加以下两行:

yourbitbucketusername = [bitbucket username]
yourbitbucketpassword = [bitbucket password]

然后你可以在你的build.gradle中添加以下内容:

uploadArchives {
repositories {
mavenDeployer {
repository(url: "repo url") {
authentication(userName: yourbitbucketusername,
password: yourbitbucketpassword)
}

关于git - wagon-git 和 Gradle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24207997/

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