Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ideFileContainsNoSourcesAndJavadocEntry (0.38 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            def repo = mavenHttpRepo
            repo.module("some", "module", "1.0").publish().allowAll()
    
            when:
            useMavenRepo(repo)
            succeeds ideTask
    
            then:
            ideFileContainsNoSourcesAndJavadocEntry()
        }
    
        @ToBeFixedForConfigurationCache
        def "ignores broken source or javadoc artifacts in maven repository"() {
            def repo = mavenHttpRepo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaSourcesAndJavadocJarsIntegrationTest.groovy

            def libraryEntry = iml.dependencies.libraries.find { it.jarName.startsWith(apiJarPrefix) }
            assert libraryEntry != null : "gradle API jar not found"
            return libraryEntry
        }
    
        void ideFileContainsNoSourcesAndJavadocEntry() {
            IdeaModuleFixture iml =  parseIml("root.iml")
            iml.dependencies.libraries.size() == 1
            iml.dependencies.libraries[0].assertHasNoJavadoc()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseSourcesAndJavadocJarsIntegrationTest.groovy

                l.jarName.startsWith(apiJarPrefix)
            }
            assert apiLibs.size() == 1 : "gradle API jar not found"
            return apiLibs.get(0)
        }
    
        void ideFileContainsNoSourcesAndJavadocEntry() {
            def classpath = EclipseClasspathFixture.create(testDirectory, executer.gradleUserHomeDir)
            def lib = classpath.libs[0]
            lib.assertHasNoSource()
            lib.assertHasNoJavadoc()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top