Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ProjectLibrary (0.26 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

                ProjectLibrary projectLibrary = new ProjectLibrary();
                projectLibrary.setName((String) library.attribute("name"));
                projectLibrary.setClasses(collectRootUrlAsFiles(getChildren(library, "CLASSES")));
                projectLibrary.setJavadoc(collectRootUrlAsFiles(getChildren(library, "JAVADOC")));
                projectLibrary.setSources(collectRootUrlAsFiles(getChildren(library, "SOURCES")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

            return targetVersion;
        }
    
        private static ProjectLibrary createProjectLibrary(String name, Iterable<File> jars) {
            ProjectLibrary projectLibrary = new ProjectLibrary();
            projectLibrary.setName(name);
            projectLibrary.setClasses(Sets.newLinkedHashSet(jars));
            return projectLibrary;
        }
    
        private static ProjectLibrary createScalaSdkLibrary(String name, Iterable<File> jars) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsIntegrationTest.groovy

            def projectLibrary = pluginAndLibraryBuild("project-lib")
            projectLibrary.settingsFile.setText("""
                pluginManagement {
                    includeBuild("../${settingsPluginBuild.buildName}")
                }
                plugins {
                    id("${settingsPluginBuild.settingsPluginId}")
                }
                rootProject.name="${projectLibrary.buildName}"
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

        }
    
        /**
         * The project-level libraries to be added to the IDEA project.
         */
        public Set<ProjectLibrary> getProjectLibraries() {
            return projectLibraries;
        }
    
        public void setProjectLibraries(Set<ProjectLibrary> projectLibraries) {
            this.projectLibraries = projectLibraries;
        }
    
        public PathFactory getPathFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

        @Test
        @ToBeFixedForConfigurationCache
        void canAddProjectLibraries() {
            runTask("idea", """
    apply plugin: 'idea'
    
    idea.project {
        def lib = new org.gradle.plugins.ide.idea.model.ProjectLibrary()
        lib.name = "someLib"
        lib.classes << file("someClasses.jar")
        lib.javadoc << file("someJavadoc.jar")
        lib.sources << file("someSources.jar")
        projectLibraries << lib
    }
    """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top