Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setSourceSets (0.25 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeQualityExtension.java

            return sourceSets;
        }
    
        /**
         * The source sets to be analyzed as part of the <code>check</code> and <code>build</code> tasks.
         */
        public void setSourceSets(Collection<SourceSet> sourceSets) {
            this.sourceSets = sourceSets;
        }
    
        /**
         * Whether to allow the build to continue if there are warnings.
         *
         * Example: ignoreFailures = true
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

         * <p>
         * See {@link EclipseClasspath} for an example.
         */
        public Iterable<SourceSet> getSourceSets() {
            return sourceSets;
        }
    
        public void setSourceSets(Iterable<SourceSet> sourceSets) {
            this.sourceSets = sourceSets;
        }
    
        /**
         * The configurations whose files are to be added as classpath entries.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                    xmlTransformer.setIndentation("\t");
                    model.getClasspath().setFile(new XmlFileContentMerger(xmlTransformer));
                    model.getClasspath().setSourceSets(project.getExtensions().getByType(JavaPluginExtension.class).getSourceSets());
    
                    AfterEvaluateHelper.afterEvaluateOrExecute(project, new Action<Project>() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top