Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getKeyInfo (0.21 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningIntegrationSpec.groovy

                asProperties(name).collect { k, v ->
                    "${addTo}[\"${escapeString(k)}\"] = \"${escapeString(v)}\""
                }.join(System.lineSeparator())
            }
        }
    
        KeyInfo getKeyInfo(set = "default") {
            new KeyInfo(
                keyId: file(set, "keyId.txt").text.trim(),
                password: file(set, "password.txt").text.trim(),
                keyRingFilePath: file(set, "secring.gpg")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

            and:
            file("build", "libs", "changed-1.0-custom.jar.asc").text
    
        }
    
        def "sign with subkey"() {
            given:
            buildFile << """
                ${getKeyInfo("subkey").addAsPropertiesScript()}
    
                signing {
                    sign jar
                }
            """
    
            when:
            run "signJar"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top