Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for mycompany (0.26 sec)

  1. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

    // tag::maven-ivy-repository-no-auth[]
    repositories {
        maven {
            url "http://repo.mycompany.com/maven2"
        }
    
        ivy {
            url "http://repo.mycompany.com/repo"
        }
    }
    // end::maven-ivy-repository-no-auth[]
    
    // tag::maven-ivy-repository-auth[]
    repositories {
        maven {
            url "sftp://repo.mycompany.com:22/maven2"
            credentials {
                username "user"
                password "password"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

    // tag::maven-ivy-repository-no-auth[]
    repositories {
        maven {
            url = uri("http://repo.mycompany.com/maven2")
        }
    
        ivy {
            url = uri("http://repo.mycompany.com/repo")
        }
    }
    // end::maven-ivy-repository-no-auth[]
    
    // tag::maven-ivy-repository-auth[]
    repositories {
        maven {
            url = uri("sftp://repo.mycompany.com:22/maven2")
            credentials {
                username = "user"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/kotlin/build.gradle.kts

    repositories {
        maven {
            url = uri("https://repo.mycompany.com/maven2")
            content {
                // this repository *only* contains artifacts with group "my.company"
                includeGroup("my.company")
            }
        }
        mavenCentral {
            content {
                // this repository contains everything BUT artifacts with group starting with "my.company"
                excludeGroupByRegex("my\\.company.*")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/groovy/build.gradle

    repositories {
        maven {
            url "https://repo.mycompany.com/maven2"
            content {
                // this repository *only* contains artifacts with group "my.company"
                includeGroup "my.company"
            }
        }
        mavenCentral {
            content {
                // this repository contains everything BUT artifacts with group starting with "my.company"
                excludeGroupByRegex "my\\.company.*"
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            }
            1 * repo2Content.includeModule("com.mycompany", "core")
            1 * repo1.content(_) >> { args ->
                args[0].execute(repo1Content)
            }
            1 * repo1Content.excludeModule("com.mycompany", "core")
            1 * repo3.content(_) >> { args ->
                args[0].execute(repo3Content)
            }
            1 * repo3Content.excludeModule("com.mycompany","core")
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    long-notation = { id = "some.plugin.id", version = "1.4" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    [libraries]
    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    long-notation = { id = "some.plugin.id", version = "1.4" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/groovy/catalog/repo/com/mycompany/catalog/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata>
      <groupId>com.mycompany</groupId>
      <artifactId>catalog</artifactId>
      <versioning>
        <latest>1.0</latest>
        <release>1.0</release>
        <versions>
          <version>1.0</version>
        </versions>
        <lastUpdated>20201112172733</lastUpdated>
      </versioning>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/kotlin/catalog/repo/com/mycompany/catalog/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata>
      <groupId>com.mycompany</groupId>
      <artifactId>catalog</artifactId>
      <versioning>
        <latest>1.0</latest>
        <release>1.0</release>
        <versions>
          <version>1.0</version>
        </versions>
        <lastUpdated>20201112174043</lastUpdated>
      </versioning>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * <pre class='autoTestedWithDeprecations'>
         * repositories {
         *   jcenter {
         *     artifactUrls = ["http://www.mycompany.com/artifacts1", "http://www.mycompany.com/artifacts2"]
         *   }
         *   jcenter {
         *     name = "nonDefaultName"
         *     artifactUrls = ["http://www.mycompany.com/artifacts1"]
         *   }
         * }
         * </pre>
         *
         * @param action a configuration action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top