Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for bom (0.01 sec)

  1. apache-maven/pom.xml

            <artifactId>bom-builder3</artifactId>
            <version>1.3.1</version>
            <executions>
              <execution>
                <id>skinny-bom</id>
                <goals>
                  <goal>build-bom</goal>
                </goals>
                <configuration>
                  <bomClassifier>skinny</bomClassifier>
                  <bomName>Maven Dependencies Skinny BOM</bomName>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Nov 10 03:14:05 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. guava-bom/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>com.google.guava</groupId>
      <artifactId>guava-bom</artifactId>
      <version>999.0.0-HEAD-jre-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <name>Guava BOM</name>
      <description>BOM for Guava artifacts</description>
      <url>https://github.com/google/guava</url>
      <inceptionYear>2010</inceptionYear>
    
      <licenses>
        <license>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 29 19:50:42 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  3. 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:5.3.0"))
    
           // define any required OkHttp artifacts without version
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Oct 30 21:39:59 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            String packaging = model.getPackaging();
            String originalPackaging = project.getOriginalModel().getPackaging();
    
            // Check if this is a BOM (original packaging is "bom")
            boolean isBom = BOM_PACKAGING.equals(originalPackaging);
    
            // Check if mixins are present without flattening enabled
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 27 07:40:26 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  5. okhttp-bom/build.gradle.kts

    plugins {
      id("com.vanniktech.maven.publish.base")
      id("java-platform")
    }
    
    dependencies {
      constraints {
        project.rootProject.subprojects.forEach { subproject ->
          if (subproject.name != "okhttp-bom") {
            api(subproject)
          }
        }
        api("com.squareup.okhttp3:okhttp-jvm:${project.version}")
        api("com.squareup.okhttp3:okhttp-android:${project.version}")
      }
    }
    
    publishing {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Jul 13 08:32:01 UTC 2025
    - 501 bytes
    - Viewed (0)
  6. android/guava-bom/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>com.google.guava</groupId>
      <artifactId>guava-bom</artifactId>
      <version>999.0.0-HEAD-android-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <name>Guava BOM</name>
      <description>BOM for Guava artifacts</description>
      <url>https://github.com/google/guava</url>
      <inceptionYear>2010</inceptionYear>
    
      <licenses>
        <license>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 29 19:50:42 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  7. settings.gradle.kts

    if (androidBuild.toBoolean()) {
      include(":regression-test")
    }
    
    if (graalBuild.toBoolean()) {
      include(":native-image-tests")
    }
    
    include(":okcurl")
    include(":okhttp")
    include(":okhttp-bom")
    include(":okhttp-brotli")
    include(":okhttp-coroutines")
    include(":okhttp-dnsoverhttps")
    include(":okhttp-hpacktests")
    include(":okhttp-idna-mapping-table")
    include(":okhttp-java-net-cookiejar")
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Oct 11 09:17:37 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            final byte[] xmlBytes = xml.getBytes();
            final byte[] dataWithBOM = new byte[bom.length + xmlBytes.length];
            System.arraycopy(bom, 0, dataWithBOM, 0, bom.length);
            System.arraycopy(xmlBytes, 0, dataWithBOM, bom.length, xmlBytes.length);
    
            final InputStream in = new ByteArrayInputStream(dataWithBOM);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  9. docs/pt/docs/deployment/index.md

    Implantar uma aplicação significa executar as etapas necessárias para torná-la disponível para os usuários.
    
    Para uma **web API**, isso normalmente envolve colocá-la em uma **máquina remota**, com um **programa de servidor** que ofereça bom desempenho, estabilidade, etc., de modo que seus **usuários** possam **acessar** a aplicação com eficiência e sem interrupções ou problemas.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 20:32:40 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/conf/maven-user.properties

    #   DefaultVersionResolverRequest    - Version resolution results (session/soft, less critical than artifacts)
    #   RgavCacheKey                     - BOM import caching (session/soft, typically resolved once)
    #   DefaultModelBuilderRequest       - Model building operations (none, ensures fresh dynamic builds)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top