Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,719 for central (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Usually, a rule is specifically written to enrich metadata of one specific module and hence the `withModule` API should be preferred.
    
    [[sec:rules_in_settings]]
    === Declaring rules in a central place
    
    NOTE: Declaring component metadata rules in settings is an incubating feature
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    tasks.named<Test>("test") {
        useJUnitPlatform()                                              // <7>
    }
    ----
    <1> Apply the application plugin to add support for building a CLI application in Java.
    <2> Use Maven Central for resolving dependencies.
    <3> Use JUnit Jupiter for testing (using the version catalog).
    <4> This dependency is used by the application (referred using the version catalog).
    <5> Define the toolchain version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. integration-tests/gradle/build.gradle.kts

        google()
        mavenCentral()
      }
      dependencies {
        classpath("com.android.tools.build:gradle:$agpVersion") {
          exclude(
            group = "org.jetbrains.trove4j"
          ) // Might not be available on Maven Central and not needed for this test
        }
      }
    }
    
    subprojects {
      if (name.endsWith("Java")) {
        apply(plugin = "java-library")
      } else {
        apply(plugin = "com.android.application")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. cmd/handler-utils_test.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

        }
    
        /*
         clientStore/serverStore only contains self-signed certificates for embedded HTTPS server.
         To make the client work with both embedded HTTPS server and real-world HTTPS server (e.g. Maven Central),
         we need to merge JDK's cacerts into the custom truststore via:
    
         keytool -importkeystore -srckeystore <JDK cacerts file location> -destkeystore <resource>/test-key-store/trustStore
    
         Note:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

                .setRepositories([
                    new RemoteRepository.Builder("test-repo", "default", testRepoUri.toString()).build(),
                    new RemoteRepository.Builder("central", "default", RepoScriptBlockUtil.mavenCentralMirrorUrl).build()
                ])
                .addDependency(new Dependency(
                    new DefaultArtifact(group, module, null, "jar", version),
                    "runtime"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            DefaultSession session = new DefaultSession(
                    rsession,
                    system,
                    List.of(lookup.lookup(RepositoryFactory.class)
                            .createRemote("central", "https://repo.maven.apache.org/maven2")),
                    null,
                    lookup);
    
            Settings settings = session.getService(SettingsBuilder.class)
                    .build(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. docs/kms/README.md

                                                                    └─────────┘
    ```
    
    In a given setup, there are `n` MinIO instances talking to `m` KES servers but only `1` central KMS. The most simple setup consists of `1` MinIO server or cluster talking to `1` KMS via `1` KES server.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

    public class DefaultRepositoryHandler extends DefaultArtifactRepositoryContainer implements RepositoryHandlerInternal {
    
        public static final String GRADLE_PLUGIN_PORTAL_REPO_NAME = "Gradle Central Plugin Repository";
        public static final String DEFAULT_BINTRAY_JCENTER_REPO_NAME = "BintrayJCenter";
        public static final String BINTRAY_JCENTER_URL = "https://jcenter.bintray.com/";
    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/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

        }
    
        private static String getPluginRepositoriesDisplayName() {
            return gradleVersion >= GradleVersion.version("4.4")
                ? "Plugin Repositories"
                : "Gradle Central Plugin Repository"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top