Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for bom1 (0.05 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDependencyManagementImportOrderTest.groovy

    		file("mavenRoot/group/bom1/1/bom1-1.pom").text = '''\
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>group</groupId>
      <artifactId>bom1</artifactId>
      <version>1</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. test/bom.go

    // Test source file beginning with a byte order mark.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func main() {
    	prog = strings.Replace(prog, "BOM", "\uFEFF", -1)
    	fmt.Print(prog)
    }
    
    var prog = `BOM
    package main
    
    func main() {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 10 20:03:07 UTC 2012
    - 406 bytes
    - Viewed (0)
  3. maven-core/src/test/remote-repo/org/apache/maven/its/bom/0.1/bom-0.1.pom

        <modelVersion>4.0.0</modelVersion>
    
        <groupId>org.apache.maven.its</groupId>
        <artifactId>bom</artifactId>
        <version>0.1</version>
        <packaging>pom</packaging>
    
        <name>Maven Integration Test :: Dummy BOM</name>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.apache.maven.its</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 29 13:02:33 UTC 2022
    - 776 bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/its/bom/0.1/bom-0.1.pom

        <modelVersion>4.0.0</modelVersion>
    
        <groupId>org.apache.maven.its</groupId>
        <artifactId>bom</artifactId>
        <version>0.1</version>
        <packaging>pom</packaging>
    
        <name>Maven Integration Test :: Dummy BOM</name>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.apache.maven.its</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 776 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

            given:
            mavenHttpRepo.module('group', 'main', '5.0').allowAll().parent(bom.group, bom.artifactId, bom.version).publish()
            bomDependency('moduleA')
            bomDependency('moduleB')
            bom.publish()
            bom.pomFile.text = bom.pomFile.text.replace("<version>2.0</version>", "")
    
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/reread/pom1.xml

    rfscholte <******@****.***> 1613318185 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Feb 14 15:56:25 UTC 2021
    - 945 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    Platforms can be published as {metadata-file-spec}[Gradle Module Metadata] and {maven-bom}[Maven BOMs].
    
    NOTE: The `java-platform` plugin cannot be used in combination with the `java` or `java-library` plugins in a given project.
    Conceptually a project is either a platform, with no binaries, _or_ produces binaries.
    
    [[sec:java_platform_usage]]
    == Usage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    In order to qualify as a BOM, a `.pom` file needs to have `<packaging>pom</packaging>` set.
    
    However often BOMs are not only providing versions as recommendations, but also a way to override any other version found in the graph.
    You can enable this behavior by using the `enforcedPlatform` keyword, instead of `platform`, when importing the BOM:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/text/scanner/scanner_test.go

    	checkTok(t, s, 1, s.Scan(), EOF, "")
    }
    
    func TestScanNext(t *testing.T) {
    	const BOM = '\uFEFF'
    	BOMs := string(BOM)
    	s := new(Scanner).Init(strings.NewReader(BOMs + "if a == bcd /* com" + BOMs + "ment */ {\n\ta += c\n}" + BOMs + "// line comment ending in eof"))
    	checkTok(t, s, 1, s.Scan(), Ident, "if") // the first BOM is ignored
    	checkTok(t, s, 1, s.Scan(), Ident, "a")
    	checkTok(t, s, 1, s.Scan(), '=', "=")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

            RuntimeException boom2 = new RuntimeException("BOOM2", boom3);
            RuntimeException boom1 = new RuntimeException("BOOM1", boom2);
            boom3.initCause(boom1);
    
            DefaultExceptionHandler handler = new DefaultExceptionHandler();
            ExceptionSummary summary = handler.handleException(boom1);
    
            assertEquals("BOOM1: BOOM2: BOOM3: [CIRCULAR REFERENCE]", summary.getMessage());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top