Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 476 for JAR (0.04 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

                    assert !testCompileClasspathFileNames.contains('mysql-connector-java-8.0.26.jar'): 'runtimeOnly dependency'
                    assert testRuntimeClasspathFileNames.containsAll('commons-lang3-3.11.jar', 'guava-30.1.1-jre.jar', 'mysql-connector-java-8.0.26.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

            thirdPartyModuleInEmptyRepo.jar.expectDownloadMissing()
            thirdPartyModule.ivy.expectDownload()
            thirdPartyModule.jar.expectDownload()
    
            companyModuleInEmptyRepo.ivy.expectDownloadMissing()
            companyModuleInEmptyRepo.jar.expectDownloadMissing()
            companyModuleInThirdPartyRepo.ivy.expectDownloadMissing()
            companyModuleInThirdPartyRepo.jar.expectDownloadMissing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginIntegrationTest.groovy

            expect:
            succeeds "jar"
            def jar = new JarTestFixture(file('build/libs/test.jar'))
            jar.assertContainsFile('META-INF/gradle-plugins/test-plugin.properties') &&
                jar.assertFileContent('META-INF/gradle-plugins/test-plugin.properties', descriptorFile.text)
            jar.assertContainsFile('com/xxx/TestPlugin.class')
            ! output.contains(NO_DESCRIPTOR_WARNING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ExternalModuleVariantsIntegrationTest.groovy

            when:
            run 'show'
    
            then:
            outputContains("test-jar-1.2.jar {artifactType=jar, org.gradle.status=release}")
            outputContains("test-aar-1.2.aar {artifactType=aar, org.gradle.status=release}")
            outputContains("test-thing-1.2.thing {artifactType=thing, org.gradle.status=release}")
            outputContains("test-1.2.jar {artifactType=jar, org.gradle.status=release}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        protected void assertIsGradleJar(TestFile jar) {
            jar.assertIsFile()
            assertThat(jar.name, jar.manifest.mainAttributes.getValue('Implementation-Version'), equalTo(baseVersion))
            assertThat(jar.name, jar.manifest.mainAttributes.getValue('Implementation-Title'), equalTo('Gradle'))
        }
    
        private static void assertIsGradleApiMetadataJar(TestFile jar) {
            new JarTestFixture(jar.canonicalFile).with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

                resolveRuntimeArtifacts(javaLibrary) {
                    optionalFeatureCapabilities << "org:optional-feature:1.0"
                    withModuleMetadata {
                        expectFiles "publishTest-1.9.jar", "optionaldep-1.0.jar", "publishTest-1.9-optional-feature.jar"
                    }
                    withoutModuleMetadata {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

            def runtimeElements = [attributes(Usage.JAVA_RUNTIME, LibraryElements.JAR, 8)]
    
            def apiElements9 = [attributes(Usage.JAVA_API, LibraryElements.JAR, 9)]
            def runtimeElements9 = [attributes(Usage.JAVA_RUNTIME, LibraryElements.JAR, 9)]
    
            def apiElements11 = [attributes(Usage.JAVA_API, LibraryElements.JAR, 11)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

        }
    
        def "direct has GMM and no sources jar and transitive has GMM and has sources jar"() {
            transitive.adhocVariants().variant("jar", [
                    "org.gradle.category": "library",
                    "org.gradle.dependency.bundling": "external",
                    "org.gradle.usage": "java-runtime"
            ]) {
                artifact("transitive-1.0.jar")
            }.variant("sources", [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractJavaProjectTestFixturesIntegrationTest.groovy

    ---
    ${compileClasspathPackaging ? 'libs/root-1.0-test-fixtures.jar' : 'classes/java/testFixtures'}
    ${pluginName == 'java' || compileClasspathPackaging ? 'libs/root-1.0.jar' : 'classes/java/main'}
    junit-4.13.jar
    hamcrest-core-1.3.jar
    ---
    """
    
            when:
            succeeds "test"
    
            then:
            def expectedJars = [':jar', ':testFixturesJar'] - producedJars
            executedAndNotSkipped(*expectedJars)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                expectFiles "bar-1.1.jar", "foo-1.0.jar", "publishTest-1.9.jar"
            }
    
            and:
            resolveApiArtifacts(javaLibrary) {
                expectFiles "foo-1.0.jar", "publishTest-1.9.jar"
            }
    
            and:
            resolveRuntimeArtifacts(javaLibrary) {
                expectFiles "bar-1.1.jar", "foo-1.0.jar", "publishTest-1.9.jar"
            }
    
            where:
            config << [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top