Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 181 for bom1 (0.03 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    .Importing a BOM in a Gradle build
    ====
    include::sample[dir="snippets/mavenMigration/importBom/kotlin",files="build.gradle.kts[tags=bom]"]
    include::sample[dir="snippets/mavenMigration/importBom/groovy",files="build.gradle[tags=bom]"]
    ====
    <1> Applies the Spring Boot Dependencies BOM
    <2> Adds a dependency whose version is defined by that BOM
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. guava-bom/pom.xml

      <groupId>com.google.guava</groupId>
      <artifactId>guava-bom</artifactId>
      <version>HEAD-jre-SNAPSHOT</version>
      <packaging>pom</packaging>
      
      <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>9</version>
        <relativePath></relativePath>
      </parent>
    
      <name>Guava BOM</name>
      <description>BOM for Guava artifacts</description>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 10 15:48:57 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/platforms/test-platform/build.gradle.kts

    plugins {
        id("java-platform")
    }
    
    group = "com.example.platform"
    
    // allow the definition of dependencies to other platforms like the JUnit 5 BOM
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform("org.junit:junit-bom:5.7.1"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 247 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/mavenMigration/importBom/kotlin/build.gradle.kts

    plugins {
        java
    }
    // end::plugins[]
    
    repositories {
        mavenCentral()
    }
    
    // tag::bom[]
    dependencies {
        implementation(platform("org.springframework.boot:spring-boot-dependencies:1.5.8.RELEASE"))  // <1>
    
        implementation("com.google.code.gson:gson")  // <2>
        implementation("dom4j:dom4j")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 335 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/tests/dependenciesWithBOM.out

    +--- com.fasterxml.jackson.core:jackson-databind:2.8.9 -> 2.9.5
    |    +--- com.fasterxml.jackson.core:jackson-annotations:2.9.0
    |    |    \--- com.fasterxml.jackson:jackson-bom:2.9.0 -> 2.9.5
    |    |         +--- com.fasterxml.jackson:jackson-bom:2.9.5 (*)
    |    |         +--- com.fasterxml.jackson.core:jackson-annotations:2.9.0 (c)
    |    |         +--- com.fasterxml.jackson.core:jackson-core:2.9.5 (c)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/inheritance/t05/ProjectInheritanceTest.java

            File pom0 = new File(localRepo, "p0/pom.xml");
    
            File pom0Basedir = pom0.getParentFile();
    
            File pom1 = new File(pom0Basedir, "p1/pom.xml");
    
            // load everything...
            MavenProject project0 = getProjectWithDependencies(pom0);
            MavenProject project1 = getProjectWithDependencies(pom1);
    
            assertEquals(pom0Basedir, project1.getParent().getBasedir());
            Set set = project1.getArtifacts();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. android/guava-bom/pom.xml

      <groupId>com.google.guava</groupId>
      <artifactId>guava-bom</artifactId>
      <version>HEAD-android-SNAPSHOT</version>
      <packaging>pom</packaging>
      
      <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>9</version>
        <relativePath></relativePath>
      </parent>
    
      <name>Guava BOM</name>
      <description>BOM for Guava artifacts</description>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 10 15:48:57 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/platforms/test-platform/build.gradle

    plugins {
        id('java-platform')
    }
    
    group = 'com.example.platform'
    
    // allow the definition of dependencies to other platforms like the JUnit 5 BOM
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform('org.junit:junit-bom:5.7.1'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 247 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/mavenMigration/importBom/groovy/build.gradle

    plugins {
        id 'java'
    }
    // end::plugins[]
    
    repositories {
        mavenCentral()
    }
    
    // tag::bom[]
    dependencies {
        implementation platform('org.springframework.boot:spring-boot-dependencies:1.5.8.RELEASE') // <1>
    
        implementation 'com.google.code.gson:gson' // <2>
        implementation 'dom4j:dom4j'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 335 bytes
    - Viewed (0)
  10. README.md

    Also, we have a [bill of materials (BOM)][bom] available to help you keep OkHttp artifacts up to date and be sure about version compatibility.
    
    ```kotlin
        dependencies {
           // define a BOM and its version
           implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0"))
    
           // define any required OkHttp artifacts without version
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top