Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 169 for mycompany (0.27 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/kotlin/catalog/repo/com/mycompany/catalog/1.0/catalog-1.0.pom

      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.mycompany</groupId>
      <artifactId>catalog</artifactId>
      <version>1.0</version>
      <packaging>toml</packaging>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 778 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-versionCatalogPlugin/groovy/build.gradle

     * limitations under the License.
     */
    
    // tag::apply_plugin[]
    plugins {
        id 'version-catalog'
        id 'maven-publish'
    }
    // end::apply_plugin[]
    
    group = 'com.mycompany'
    version = '1.0'
    
    // tag::catalog_spec[]
    catalog {
        // declare the aliases, bundles and versions in this block
        versionCatalog {
            library('my-lib', 'com.mycompany:mylib:1.2')
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/organizinggradleprojects/SamplesOrganizingGradleProjectsIntegrationTest.groovy

            executer.inDirectory(sample.dir.file('groovy'))
    
            when:
            succeeds('createCustomGradleDistribution')
    
            then:
            def customDistribution = sample.dir.file('groovy/build/distributions/mycompany-gradle-4.6-0.1-bin.zip')
            customDistribution.assertExists()
            new ZipTestFixture(customDistribution).assertContainsFile("gradle-4.6/init.d/repositories.gradle")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/groovy/catalog/build.gradle

        id 'maven-publish'
    }
    
    catalog {
        versionCatalog {
            library('guava', 'com.google.guava:guava:28.0-jre')
            library('myGroovy', 'org.codehaus.groovy:groovy:3.0.5')
        }
    }
    
    group = "com.mycompany"
    version = "1.0"
    
    publishing {
        publications {
            maven(MavenPublication) {
                from components.versionCatalog
            }
        }
    }
    
    publishing {
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-versionCatalogPlugin/kotlin/build.gradle.kts

     * limitations under the License.
     */
    
    // tag::apply_plugin[]
    plugins {
        `version-catalog`
        `maven-publish`
    }
    // end::apply_plugin[]
    
    group = "com.mycompany"
    version = "1.0"
    
    // tag::catalog_spec[]
    catalog {
        // declare the aliases, bundles and versions in this block
        versionCatalog {
            library("my-lib", "com.mycompany:mylib:1.2")
        }
    }
    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. okhttp/src/main/kotlin/okhttp3/OkHttp.kt

       * qualifier are not unique and should only be used in development environments. If you create
       * custom builds of OkHttp please include a qualifier your version name, like "4.7.0-mycompany.3".
       * The version string is configured in the root project's `build.gradle`.
       *
       * Note that OkHttp's runtime version may be different from the version specified in your
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    		).Get()
    		return jwt.ConvertToJwksFetchMode(v)
    	}()
    
    	// IstiodServiceCustomHost allow user to bring a custom address or multiple custom addresses for istiod server
    	// for examples: 1. istiod.mycompany.com  2. istiod.mycompany.com,istiod-canary.mycompany.com
    	IstiodServiceCustomHost = env.Register("ISTIOD_CUSTOM_HOST", "",
    		"Custom host name of istiod that istiod signs the server cert. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

     *
     * ```Groovy
     * repository(url: "scp://repos.mycompany.com/releases") {
     *   authentication(userName: "me", password: "myPassword")
     * }
     * ```
     *
     * Can be mechanically translated to the following Kotlin with the aid of `withGroovyBuilder`:
     *
     * ```Kotlin
     * withGroovyBuilder {
     *   "repository"("url" to "scp://repos.mycompany.com/releases") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

       <configuration>
          <trusted-artifacts>
             <trust group="com.mycompany" reason="We trust mycompany artifacts"/>
          </trusted-artifacts>
       </configuration>
    </verification-metadata>
    ----
    
    This means that all components which group is `com.mycompany` will automatically be trusted.
    Trusted means that Gradle will not perform any verification whatsoever.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/ProjectDependenciesResolverTest.java

            MavenSession session = createMavenSession(null);
            MavenProject project = session.getCurrentProject();
    
            new ProjectBuilder(project)
                    .addDependency(
                            "com.mycompany",
                            "system-dependency",
                            "1.0",
                            Artifact.SCOPE_SYSTEM,
                            new File(getBasedir(), "pom.xml").getAbsolutePath());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top