java - 共享的Gradle脚本中如何配置一些私密信息
巴扎黑
巴扎黑 2017-04-18 09:58:36
0
4
798

有一个Github上的开源Java项目,使用Gradle构建。现在需要发布到Maven中央仓库,其中需要配置一些中央仓库的用户、密码、签名等信息。这些都是私密信息,直接贴build脚本里面放在Github上肯定是不合适的。
Google了很久找到一个解决办法,在项目目录下创建gradle.properties文件。存放用户名密码信息,但实际值为空:

version=0.4.5-SNAPSHOT
signing.keyId=
signing.password=
signing.secretKeyRingFile=
ossrhUsername=
ossrhPassword=

现在只有一个问题,在使用travis-ci自动构建的时候,提示错误:

:signArchives FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Could not evaluate onlyIf predicate for task ':signArchives'.
> Neither path nor baseDir may be null or empty string. path='' basedir='/home/travis/build/xyalan/marathon-cli'
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED

我的build脚本部分内容:

artifacts {
    archives javadocJar, sourcesJar
}

ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
signing {
    required {
        boolean signed =  isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives")
        print signed
        signed
    }
    sign configurations.archives
}

uploadArchives {
    repositories {
        mavenDeployer {
            beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

            repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
                authentication(userName: ossrhUsername, password: ossrhPassword)
            }

            snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
                authentication(userName: ossrhUsername, password: ossrhPassword)
            }

            pom.project {
                name 'marathon-cli'
                packaging 'jar'
                // optionally artifactId can be defined here
                description 'A application used as an example on how to set up pushing  its components to the Central Repository.'
                url 'http://www.example.com/example-application'

                scm {
                    connection 'scm:git:git://github.com/xyalan/marathon-cli.git'
                    developerConnection 'scm:git:git@github.com:xyalan/marathon-cli.git'
                    url 'https://github.com/xyalan/marathon-cli'
                }

                licenses {
                    license {
                        name 'The Apache License, Version 2.0'
                        url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
                    }
                }

                developers {
                    developer {
                        id 'alan'
                        name 'Alan Yang'
                        email 'alanlhy@gmail.com'
                    }
                }
            }
        }
    }

请问这个如何配置这个路径信息?

巴扎黑
巴扎黑

全員に返信(4)
伊谢尔伦

プレースホルダーを直接使用するのが最も簡単な方法です:
ユーザー名やパスワードなどの個人情報を gradle.properties ファイルに入力します:

リーリー

その後、代わりに ${username}、${password} をビルド スクリプト内で直接使用します。ただし、この方法ではユーザーが独自の gradle.properties を設定する必要があります。設定されていない場合、プレースホルダーは見つかりません。

いいねを押す +0
伊谢尔伦

travis について言及しましたね。
travis にはプロジェクト内の機密情報を処理するために使用される 2 つの暗号化コマンドがあります

リーリー

参考:

  • https://docs.travis-ci.com/us...

  • https://docs.travis-ci.com/us...

  • https://uedsky.com/2016-06/tr...

いいねを押す +0
左手右手慢动作

プライベート コンテンツをファイルに保存し、そのファイルを .ignore に追加します (この記事「Gradle の動作: aar パッケージを Maven リポジトリに公開する」など)

いいねを押す +0
阿神

gradle-nexus-plugin

認証情報
~/.gradle/gradle.properties で、アーティファクトのアップロードに必要な必須の Nexus 認証情報を設定する必要があります。
上記のようなプラグインはデフォルトで設定されていますユーザーのパスワード ~ ディレクトリに配置されます。

また、Gradle の最大の利点の 1 つは柔軟性です。これは groovy スクリプトを使用して直接記述されているため、任意のディレクトリに任意の構成ファイルをロードできます。たとえば、スクリプト内で Properties を直接使用して、ディレクトリ内のファイルを読み取り、指定された形式などで暗号化することは問題ありません。

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート