Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 49 for bom (0.01 seconds)

  1. impl/maven-core/src/test/remote-repo/org/apache/maven/its/bom/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata>
      <groupId>org.apache.maven.its</groupId>
      <artifactId>bom</artifactId>
      <version>0.1</version>
      <versioning>
        <versions>
          <version>0.1</version>
        </versions>
      </versioning>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 251 bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/test/resources/poms/depmgmt/junit-0.2.xml

             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>org.junit</groupId>
        <artifactId>bom</artifactId>
        <version>0.2</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.junit</groupId>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 724 bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/test/resources/poms/depmgmt/distant-import.xml

        <artifactId>other</artifactId>
        <version>0.1-SNAPSHOT</version>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.junit</groupId>
                    <artifactId>bom</artifactId>
                    <version>0.1</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 768 bytes
    - Click Count (0)
  4. build-logic-commons/build-platform/build.gradle.kts

            api("org.jetbrains.dokka:dokka-gradle-plugin:2.0.0")
            api("com.fasterxml.woodstox:woodstox-core:6.4.0") {
                because("CVE-2022-40152 on lower versions")
            }
            api("com.fasterxml.jackson:jackson-bom:2.16.1") {
                because("CVE-2025-52999 on lower versions")
            }
            api("com.beust:jcommander:1.78")
            api("$groovyGroup:groovy:$groovyVersion")
            api("org.codenarc:CodeNarc:$codenarcVersion")
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Dec 30 10:16:30 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  5. maven-tests/pom.xml

        <maven.compiler.target>17</maven.compiler.target>
      </properties>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>com.squareup.okhttp3</groupId>
            <artifactId>okhttp-bom</artifactId>
            <version>[5.2.0-SNAPSHOT,6.0.0-SNAPSHOT)</version>
            <type>pom</type>
            <scope>import</scope>
          </dependency>
        </dependencies>
      </dependencyManagement>
    
      <dependencies>
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Jul 13 08:32:01 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ResponseBody.kt

        }
        return bytes
      }
    
      /**
       * Returns the response as a character stream.
       *
       * If the response starts with a
       * [Byte Order Mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark), it is consumed and
       * used to determine the charset of the response bytes.
       *
       * Otherwise if the response has a `Content-Type` header that specifies a charset, that is used
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue May 27 14:51:25 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  7. impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

             module-a
             module-b               (depends on module-a)
             module-c
             └─── module-c-1
                  module-c-2        (depends on module-b)
             module-d               (packaging is bom)
         */
        private static final String GROUP_ID = "unittest";
        private static final String PARENT_MODULE = "module-parent";
        private static final String INDEPENDENT_MODULE = "module-independent";
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 09 20:39:03 GMT 2025
    - 28K bytes
    - Click Count (0)
  8. docs/changelogs/changelog_4x.md

     *  New: Publish a [bill of materials (BOM)][bom] for OkHttp. Depend on this from Gradle or Maven to
        keep all of your OkHttp artifacts on the same version, even if they're declared via transitive
        dependencies. You can even omit versions when declaring other OkHttp dependencies.
    
        ```kotlin
        dependencies {
           api(platform("com.squareup.okhttp3:okhttp-bom:4.4.0"))
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Apr 17 13:25:31 GMT 2024
    - 25.2K bytes
    - Click Count (0)
  9. build.gradle.kts

    val testJavaVersion = System.getProperty("test.java.version", "21").toInt()
    
    /** Configure building for Java+Kotlin projects. */
    subprojects {
      val project = this@subprojects
      if (project.name == "okhttp-bom") return@subprojects
    
      if (project.name == "okhttp-android") return@subprojects
      if (project.name == "android-test") return@subprojects
      if (project.name == "regression-test") return@subprojects
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat Nov 01 12:18:11 GMT 2025
    - 11.5K bytes
    - Click Count (1)
  10. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultTypeProvider.java

        public Collection<DefaultType> types() {
            return Arrays.asList(
                    // Maven types
                    new DefaultType(Type.POM, Language.NONE, "pom", null, false),
                    new DefaultType(Type.BOM, Language.NONE, "pom", null, false),
                    new DefaultType(Type.MAVEN_PLUGIN, Language.JAVA_FAMILY, "jar", null, false, JavaPathType.CLASSES),
                    // Java types
                    new DefaultType(
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 4.1K bytes
    - Click Count (0)
Back to Top