Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Bintray (0.22 sec)

  1. platforms/documentation/docs/src/snippets/plugins/buildscript/groovy/build.gradle

    // tag::buildscript_block[]
    buildscript {
        repositories {
            gradlePluginPortal()
        }
        dependencies {
            classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
        }
    }
    
    apply plugin: 'com.jfrog.bintray'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 259 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/buildscript/kotlin/build.gradle.kts

    // tag::buildscript_block[]
    buildscript {
        repositories {
            gradlePluginPortal()
        }
        dependencies {
            classpath("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5")
        }
    }
    
    apply(plugin = "com.jfrog.bintray")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 262 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-closure-of/kotlin/build.gradle.kts

    import com.jfrog.bintray.gradle.BintrayExtension.PackageConfig
    
    plugins {
        id("com.jfrog.bintray") version "1.8.5"
    }
    
    // tag::closureOf[]
    bintray {
        pkg(closureOf<PackageConfig> {
            // Config for the package here
        })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 254 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/dsl/groovy/build.gradle

    // tag::use-plugin[]
    // tag::use-community-plugin[]
    plugins {
    // end::use-community-plugin[]
        id 'java'
    // end::use-plugin[]
    // tag::use-community-plugin[]
        id 'com.jfrog.bintray' version '1.8.5'
    // tag::use-plugin[]
    }
    // end::use-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 277 bytes
    - Viewed (0)
  5. .idea/dictionaries/4u7.xml

    <component name="ProjectDictionaryState">
      <dictionary name="4u7">
        <words>
          <w>aarch</w>
          <w>bintray</w>
          <w>cacheability</w>
          <w>cacheable</w>
          <w>cidr</w>
          <w>fastutil</w>
          <w>foldable</w>
          <w>instrumentator</w>
          <w>jdks</w>
          <w>jsshell</w>
          <w>proguarded</w>
          <w>protobuf</w>
          <w>redirector</w>
          <w>remapper</w>
          <w>sonatype</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 16 12:19:01 UTC 2023
    - 498 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    The Gradle Bintray Plugin - `com.jfrog.bintray` :: Allows you to publish artifacts to Bintray by configuring the plugin using the `bintray{}` block.
    
    == Plugin distribution
    
    Plugins are distributed in three ways:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/dsl/kotlin/build.gradle.kts

    // tag::use-plugin[]
    // tag::use-community-plugin[]
    plugins {
        // end::use-community-plugin[]
        java
    // end::use-plugin[]
    // tag::use-community-plugin[]
        id("com.jfrog.bintray") version "1.8.5"
    // tag::use-plugin[]
    }
    // end::use-plugin[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 277 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds a repository which looks in Bintray's JCenter repository for dependencies.
         * <p>
         * The URL used to access this repository is {@literal "https://jcenter.bintray.com/"}.
         * The behavior of this repository is otherwise the same as those added by {@link #maven(org.gradle.api.Action)}.
         * <p>
         * Examples:
         * <pre class='autoTestedWithDeprecations'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

        public static final String DEFAULT_BINTRAY_JCENTER_REPO_NAME = "BintrayJCenter";
        public static final String BINTRAY_JCENTER_URL = "https://jcenter.bintray.com/";
        public static final String GOOGLE_REPO_NAME = "Google";
    
        public static final String FLAT_DIR_DEFAULT_NAME = "flatDir";
        private static final String MAVEN_REPO_DEFAULT_NAME = "maven";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

        - On artifact javaparser-core-3.6.11.jar (com.github.javaparser:javaparser-core:3.6.11) in repository 'MavenRepo': Artifact was signed with key '8756c4f765c9ac3cb6b85d62379ce192d401ab61' (Bintray (by JFrog) <****>) and passed verification but the key isn't in your trusted keys list.
    ----
    
    [NOTE]
    ====
    The key IDs that Gradle shows in error messages are the key IDs found in the signature file it tries to verify.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top