Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for bom1 (0.11 sec)

  1. maven-core/src/test/projects/project-builder/MNG-7648/pom.xml

            </repository>
        </repositories>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.apache.maven.its</groupId>
                    <artifactId>bom</artifactId>
                    <version>0.1</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 29 13:02:33 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java

            File pom0Basedir = pom0.getParentFile();
            File pom1 = new File(pom0Basedir, "p1/pom.xml");
    
            // load the child project, which inherits from p0...
            MavenProject project0 = getProjectWithDependencies(pom0);
            MavenProject project1 = getProjectWithDependencies(pom1);
    
            assertNotNull(project1.getParent(), "Parent is null");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-enforcedConstraintsFromBOM/tests/forced-platform-from-bom.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/mavenMigration/importBom/groovy/settings.gradle

    rootProject.name = 'bom-import'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/mavenMigration/importBom/kotlin/settings.gradle.kts

    rootProject.name = "bom-import"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  6. src/go/scanner/scanner.go

    			}
    		case '|':
    			tok = s.switch3(token.OR, token.OR_ASSIGN, '|', token.LOR)
    		case '~':
    			tok = token.TILDE
    		default:
    			// next reports unexpected BOMs - don't repeat
    			if ch != bom {
    				// Report an informative error for U+201[CD] quotation
    				// marks, which are easily introduced via copy and paste.
    				if ch == '“' || ch == '”' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. operator/pkg/compare/compare.go

    	if err != nil {
    		return "", err
    	}
    	bo, err := object.ParseK8sObjectsFromYAMLManifest(b)
    	if err != nil {
    		return "", err
    	}
    
    	aom, bom := ao.ToMap(), bo.ToMap()
    	return manifestDiff(aom, bom, nil, verbose)
    }
    
    // ManifestDiffWithSelect checks the manifest differences with selected and ignored resources.
    // The selected filter will apply before the ignored filter.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-platform/quickstart/kotlin/build.gradle.kts

    // end::constraints[]
    
    // tag::platform[]
    // tag::allow-dependencies[]
    javaPlatform {
        allowDependencies()
    }
    // end::allow-dependencies[]
    
    dependencies {
        api(platform("com.fasterxml.jackson:jackson-bom:2.9.8"))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 554 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-constraintsFromBOM/kotlin/settings.gradle.kts

    rootProject.name = "dependency-on-bom"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ClasspathDependenciesAttributesIntegrationTest.groovy

            mavenRepo.module('test', 'bom', '1.0').hasPackaging('pom').dependencyConstraint(module).publish()
    
            pluginBuilder.addPlugin("println 'test-plugin applied'")
            def pluginModule = pluginBuilder.publishAs('test:plugin:1.0', mavenRepo, executer).pluginModule
            def pomFile = pluginModule.pom.file
            // Adds a dependency on the BOM to show that variant derivation is then available during project use
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top