Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for sourceSets (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-compilation.png

    java-sourcesets-compilation.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 132.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-process-resources.png

    java-sourcesets-process-resources.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

                        assert ignoreFailures == false
                    }
                }
                assertTaskConfiguration('codenarcMain', project.sourceSets.main)
                assertTaskConfiguration('codenarcTest', project.sourceSets.test)
                assertTaskConfiguration('codenarcOther', project.sourceSets.other)
            '''.stripIndent()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            return sourceSetUsages.get(sourceSet).stream()
                .map(this::sanitizeNameForAttribute)
                .collect(toList());
        }
    
        private String sanitizeNameForAttribute(SourceSet sourceSet) {
            return sourceSet.getName().replaceAll(",", "");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            task dependsOn()
            task.source.files == project.sourceSets.main.resources.files
            task.destinationDir == project.sourceSets.main.output.resourcesDir
    
            when:
            task = project.tasks[JvmConstants.COMPILE_JAVA_TASK_NAME] as JavaCompile
    
            then:
            task dependsOn()
            task.classpath.is(project.sourceSets.main.compileClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                    def testFile = file("${'$'}buildDir/${'$'}name")
                    dependsOn(sourceSets.main.output)
                    doFirst {
                        project.javaexec {
                            assert !(delegate instanceof ExtensionAware)
                            classpath(sourceSets.main.output.classesDirs)
                            mainClass = 'org.gradle.TestMain'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

        def "registerFeature can be used when there is no main SourceSet"() {
            given:
            buildFile << """
                apply plugin: 'java-base'
    
                sourceSets {
                   main211 {}
                   main212 {}
                }
                java {
                   registerFeature('scala211') {
                      usingSourceSet(sourceSets.main211)
                   }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. buildSrc/src/main/kotlin/Osgi.kt

        setClasspath(osgi.compileClasspath + sourceSets["main"].compileClasspath)
        bnd(*bndProperties)
      }
      // Call the convention when the task has finished, to modify the jar to contain OSGi metadata.
      jarTask.doLast {
        bundleExtension.buildAction().execute(this)
      }
    }
    
    val Project.sourceSets: SourceSetContainer
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/ProjectSourceRoots.groovy

    
    
    
    class ProjectSourceRoots {
    
        final File projectDir
        final List<String> sourceSets
        final List<String> languages
    
        ProjectSourceRoots(File projectDir, List<String> sourceSets, List<String> languages) {
            this.projectDir = projectDir
            this.sourceSets = sourceSets
            this.languages = languages
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 996 bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/JvmEcosystemPlugin.java

        private final ObjectFactory objectFactory;
        private final SourceSetContainer sourceSets;
    
        @Inject
        public JvmEcosystemPlugin(ObjectFactory objectFactory, SourceSetContainer sourceSets) {
            this.objectFactory = objectFactory;
            this.sourceSets = sourceSets;
        }
    
        @Override
        public void apply(Project project) {
            ProjectInternal p = (ProjectInternal) project;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top