Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for jaxb (0.28 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/DynamicModulesClassPathProviderTest.groovy

        }
    
        def "removes JAXB from classpath on Java #javaVersion"() {
            given:
            pluginModuleRegistry.getApiModules() >> ([module("gradle-resources-s3", ["jaxb-impl-2.3.1.jar"])] as Set)
    
            when:
            List<String> classpath = findClassPath(javaVersion)
    
            then:
            !classpath.contains("jaxb-impl-2.3.1.jar")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 18 09:54:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/DynamicModulesClassPathProvider.java

                return classpath.removeIf(new Spec<File>() {
                    @Override
                    public boolean isSatisfiedBy(File file) {
                        return file.getName().startsWith("jaxb-impl-");
                    }
                });
            }
            return classpath;
        }
    
        private Set<Module> allRequiredModulesOf(String... names) {
            Set<Module> modules = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/dag.txt

    	quarkus/test-framework/junit5/pom.xml
    quarkus/extensions/resteasy-reactive/rest-client-reactive-jaxb/deployment/pom.xml
    	quarkus/extensions/jaxb/deployment/pom.xml
    	quarkus/extensions/resteasy-reactive/rest-client-reactive/deployment/pom.xml
    	quarkus/extensions/resteasy-reactive/rest-client-reactive-jaxb/runtime/pom.xml
    	quarkus/extensions/resteasy-reactive/quarkus-resteasy-reactive/deployment/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

         * Base64 encode user info for HTTP Basic Authentication.
         *
         * Try to use {@literal java.util.Base64} encoder which is available starting with Java 8.
         * Fallback to {@literal javax.xml.bind.DatatypeConverter} from JAXB which is available starting with Java 6 but is not anymore in Java 9.
         * Fortunately, both of these two Base64 encoders implement the right Base64 flavor, the one that does not split the output in multiple lines.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. gradle/verification-metadata.xml

          </component>
          <component group="javax.xml.bind" name="jaxb-api" version="2.3.0">
             <artifact name="jaxb-api-2.3.0.jar">
                <pgp value="B38E195D438D44A1A8D2D2203575E1C767076CA8"/>
             </artifact>
          </component>
          <component group="javax.xml.bind" name="jaxb-api" version="2.3.1">
             <artifact name="jaxb-api-2.3.1.jar">
                <pgp value="70CD19BFD9F6C330027D6F260315BFB7970A144F"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    ----
    =====
    ====
    
    [[rel5.0:jaxb_and_java9]]
    === [5.0] Gradle now bundles JAXB for Java 9 and above
    
    In order to use S3 backed artifact repositories, you previously had to add `--add-modules java.xml.bind` to `org.gradle.jvmargs` when running on Java 9 and above.
    
    Since Java 11 no longer contains the `java.xml.bind` module, Gradle now bundles JAXB 2.3.1 (`com.sun.xml.bind:jaxb-impl`) and uses it on Java 9 and above.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                    "jackson-annotations-2.4.0.jar", "jackson-core-2.4.3.jar", "jackson-databind-2.4.3.jar", "jackson-module-jaxb-annotations-2.4.3.jar",
                    "publishTest-1.9.jar", "spring-core-2.5.6.jar"
            }
        }
    
        def "can publish java-library with strict dependencies"() {
            requiresExternalDependencies = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    "commons-io-1.4.jar",
                    "jackson-annotations-2.4.0.jar",
                    "jackson-core-2.4.3.jar",
                    "jackson-databind-2.4.3.jar",
                    "jackson-module-jaxb-annotations-2.4.3.jar",
                    "publishTest-1.9.jar",
                    "spring-core-2.5.6.jar"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  9. pom.xml

    				<exclusion>
    					<groupId>javax.activation</groupId>
    					<artifactId>javax.activation-api</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>javax.xml.bind</groupId>
    					<artifactId>jaxb-api</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>jakarta.annotation</groupId>
    					<artifactId>jakarta.annotation-api</artifactId>
    				</exclusion>
    				<exclusion>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/jax.requirements.txt

    # JAX requirements, passed into container by defining the ARG 
    # REQUIREMENTS_FILE=jax.requirements.txt
    
    
    setuptools
    wheel
    cloudpickle
    colorama>=0.4.4
    matplotlib
    pillow>=9.1.0
    rich
    absl-py
    portpicker
    six
    opt-einsum
    auditwheel
    typing_extensions
    importlib_metadata>=4.6
    numpy==1.26.0;python_version=="3.12"
    numpy==1.23.4;python_version=="3.11"
    numpy==1.22.4;python_version<"3.11"
    scipy==1.11.2;python_version=="3.12"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 20:02:17 UTC 2024
    - 570 bytes
    - Viewed (0)
Back to top