Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ProjectLibrary (0.22 sec)

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

        }
    
        @Override
        public boolean equals(Object obj) {
            if (this == obj) {
                return true;
            }
            if (!(obj instanceof ProjectLibrary)) {
                return false;
            }
            ProjectLibrary that = (ProjectLibrary) obj;
            return Objects.equal(name, that.name)
                && Objects.equal(type, that.type)
                && Objects.equal(compilerClasspath, that.compilerClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectLibraryTest.groovy

            new ProjectLibrary(name: "lib1", classes:  [new File("class/one"), new File("class/two")]) ==
                    new ProjectLibrary(name: "lib1", classes: [new File("class/two"), new File("class/one")])
    
            new ProjectLibrary(name: "lib1") != new ProjectLibrary(name: "OTHER")
            new ProjectLibrary(name: "lib1", classes:  [new File("class/one"), new File("class/two")]) !=
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectTest.groovy

            project.bytecodeVersion == JavaVersion.VERSION_1_8
        }
    
        def "project libraries are overwritten with generated content"() {
            def libraries = [new ProjectLibrary(name: "newlib", classes: [path("newlib1.jar")])]
    
            when:
            project.load(customProjectReader)
            project.configure([], "1.6", new IdeaLanguageLevel("JDK_1_5"), JavaVersion.VERSION_1_8, [], libraries, '')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ide.idea.model.ModuleLibrary
    org.gradle.plugins.ide.idea.model.Path
    org.gradle.plugins.ide.idea.model.PathFactory
    org.gradle.plugins.ide.idea.model.Project
    org.gradle.plugins.ide.idea.model.ProjectLibrary
    org.gradle.plugins.ide.idea.model.SingleEntryModuleLibrary
    org.gradle.plugins.ide.idea.model.Workspace
    org.gradle.plugins.signing.Sign
    org.gradle.plugins.signing.signatory.pgp.PgpKeyId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.idea.model.ProjectLibrary.getName()> does not have raw return type assignable to org.gradle.api.provider.Property in (ProjectLibrary.java:0)
    Method <org.gradle.plugins.ide.idea.model.ProjectLibrary.getSources()> does not have raw return type assignable to org.gradle.api.provider.Property in (ProjectLibrary.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top