Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for useLegacyGpg (0.18 sec)

  1. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSettings.java

                return "gpg.exe";
            } else {
                return "gpg";
            }
        }
    
        public void setUseLegacyGpg(boolean useLegacyGpg) {
            this.useLegacyGpg = useLegacyGpg;
        }
    
        public boolean getUseLegacyGpg() {
            return useLegacyGpg;
        }
    
        public void setHomeDir(File homeDir) {
            this.homeDir = homeDir;
        }
    
        public File getHomeDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

            }
            if (passphrase != null) {
                if (useLegacyGpg) {
                    args.add("--no-use-agent");
                } else {
                    args.add("--pinentry-mode=loopback");
                }
                args.add("--passphrase-fd");
                args.add("0");
            } else {
                if (useLegacyGpg) {
                    args.add("--use-agent");
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatoryFactory.java

            Object executable = project.findProperty(buildQualifiedProperty(propertyPrefix, "executable"));
            Object useLegacyGpg = project.findProperty(buildQualifiedProperty(propertyPrefix, "useLegacyGpg"));
            Object homeDir = project.findProperty(buildQualifiedProperty(propertyPrefix, "homeDir"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/groovy/gradle.properties

    // tag::user-properties[]
    signing.gnupg.executable=gpg
    signing.gnupg.useLegacyGpg=true
    signing.gnupg.homeDir=gnupg-home
    signing.gnupg.optionsFile=gnupg-home/gpg.conf
    signing.gnupg.keyName=24875D73
    signing.gnupg.passphrase=gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/kotlin/gradle.properties

    // tag::user-properties[]
    signing.gnupg.executable=gpg
    signing.gnupg.useLegacyGpg=true
    signing.gnupg.homeDir=gnupg-home
    signing.gnupg.optionsFile=gnupg-home/gpg.conf
    signing.gnupg.keyName=24875D73
    signing.gnupg.passphrase=gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  6. platforms/software/signing/src/testFixtures/groovy/org/gradle/test/fixtures/GpgCmdFixture.groovy

            GpgCmdAndVersion client = getAvailableGpg()
            assert client
            properties.put('signing.gnupg.executable', client.executable)
            properties.put('signing.gnupg.useLegacyGpg', (client.version == 1).toString())
            properties.put('signing.gnupg.homeDir', gpgHomeSymlink.toAbsolutePath().toString())
            properties.remove('signing.gnupg.optionsFile')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    ----
    
    `signing.gnupg.executable`::
    The gpg executable that is invoked for signing. The default value of this property depends on `useLegacyGpg`. If that is `true` then the default value of executable is "gpg" otherwise it is "gpg2".
    `signing.gnupg.useLegacyGpg`::
    Must be `true` if GnuPG version 1 is used and `false` otherwise. The default value of the property is `false`.
    `signing.gnupg.homeDir`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
Back to top