Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,037 for central (0.12 sec)

  1. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.java-conventions.gradle.kts

        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id("com.github.spotbugs")
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    // Use the Checkstyle rules provided by the convention plugin
    // Do not allow any warnings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 909 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id("com.github.spotbugs")
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    // Use the Checkstyle rules provided by the convention plugin
    // Do not allow any warnings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 909 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id 'com.github.spotbugs'
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    // Use the Checkstyle rules provided by the convention plugin
    // Do not allow any warnings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 914 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.java-conventions.gradle.kts

        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id("com.github.spotbugs")
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    // Use the Checkstyle rules provided by the convention plugin
    // Do not allow any warnings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 909 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/groovy/greeting-plugin/build.gradle

    // tag::plugin[]
    plugins {
        // Apply the Java Gradle plugin development plugin to add support for developing Gradle plugins
        id 'java-gradle-plugin'
    }
    
    repositories {
        // Use Maven Central for resolving dependencies.
        // You can declare any Maven/Ivy/file repository here.
        mavenCentral()
    }
    
    dependencies {
        // Use JUnit test framework for unit tests
        testImplementation 'junit:junit:4.13'
    }
    
    gradlePlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

        }
    
        ivy {
            url = uri("gcs://myCompanyBucket/ivyrepo")
        }
    }
    // end::maven-ivy-gcs-repository[]
    
    // tag::maven-central[]
    repositories {
        mavenCentral()
    }
    // end::maven-central[]
    
    // tag::maven-google[]
    repositories {
        google()
    }
    // end::maven-google[]
    
    // tag::maven-local[]
    repositories {
        mavenLocal()
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java

                project.setOriginalModel(model);
                project.setRemoteArtifactRepositories(Collections.singletonList(new MavenArtifactRepository(
                        "central", "http://repo.maven.apache.org/", new DefaultRepositoryLayout(), null, null)));
            }
            Model model = builder.build(session, project, file);
    
            assertNotNull(model);
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/multiple-repos/pom.xml

        <groupId>mng3984</groupId>
        <artifactId>test-1</artifactId>
        <version>0.1</version>
        <packaging>pom</packaging>
    
        <name>MNG-3984</name>
       <repositories>
         <repository>
           <id>central-parent</id>
           <name>Maven Repository Switchboard</name>
           <layout>default</layout>
           <url>https://repo1.maven.org/maven2</url>
           <snapshots>
             <enabled>false</enabled>
           </snapshots>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/multiple-repos/sub/pom.xml

        <version>0.1</version>
       </parent>
       <groupId>mng3984</groupId>
       <artifactId>test-2</artifactId>
       <version>0.1</version>
    
       <name>MNG-3984</name>
      <repositories>
        <repository>
          <id>central-child</id>
          <name>Maven Repository Switchboard</name>
          <layout>default</layout>
          <url>https://repo1.maven.org/maven2</url>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/xctest-configurations.dot

    digraph xctestConfigurations {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=3.5, height=0.5];
    
      subgraph central {
        node[style=filled, fillcolor=white]
        implementation -> testVariantExecutableImplementation [style=invis, weight=1000]
        testVariantExecutableImplementation -> implementation [headport=s, tailport=n]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top