Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for getOrganisation (0.28 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomDeveloper.java

        Property<String> getEmail();
    
        /**
         * The URL of this developer.
         */
        Property<String> getUrl();
    
        /**
         * The organization name of this developer.
         */
        Property<String> getOrganization();
    
        /**
         * The organization's URL of this developer.
         */
        Property<String> getOrganizationUrl();
    
        /**
         * The roles of this developer.
         */
        SetProperty<String> getRoles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java

            // Value taken from p4
            // ----------------------------------------------------------------------
    
            assertEquals("Codehaus", p4.getOrganization().getName());
    
            // ----------------------------------------------------------------------
            // Value taken from super model
            // ----------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            // Value taken from p4
            // ----------------------------------------------------------------------
    
            assertEquals("Codehaus", project4.getOrganization().getName());
    
            // ----------------------------------------------------------------------
            // Value taken from super model
            // ----------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

            pom?.description[0]?.text()
        }
    
        String getUrl() {
            pom?.url[0]?.text()
        }
    
        String getInceptionYear() {
            pom?.inceptionYear[0]?.text()
        }
    
        Node getOrganization() {
            return pom?.organization[0]
        }
    
        NodeList getLicenses() {
            return pom?.licenses?.license
        }
    
        NodeList getDevelopers() {
            return pom?.developers?.developer
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPom.java

                organization = objectFactory.newInstance(DefaultMavenPomOrganization.class, objectFactory);
            }
            action.execute(organization);
        }
    
        @Override
        public MavenPomOrganization getOrganization() {
            return organization;
        }
    
        @Override
        public void developers(Action<? super MavenPomDeveloperSpec> action) {
            action.execute(this);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                Model.Builder builder, Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
            Organization src = source.getOrganization();
            if (src != null) {
                Organization tgt = target.getOrganization();
                if (tgt == null) {
                    builder.organization(src);
                    builder.location("organisation", source.getLocation("organisation"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.publish.ivy.IvyPublication.getModule()> does not have raw return type assignable to org.gradle.api.provider.Property in (IvyPublication.java:0)
    Method <org.gradle.api.publish.ivy.IvyPublication.getOrganisation()> does not have raw return type assignable to org.gradle.api.provider.Property in (IvyPublication.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)
  8. test-site/activator-launch-1.3.2.jar

    String name; private int hash; private java.util.Map attributes; public static ModuleId newInstance(String, String); private static ModuleId intern(ModuleId); public void ModuleId(String, String); public final String getName(); public final String getOrganisation(); public final boolean equals(Object); public final int hashCode(); public final String toString(); public final int compareTo(Object); public final java.util.Map getAttributes(); static void <clinit>(); } org/apache/ivy/core/module/id/ArtifactRevisionId.class...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public void setOrganization(Organization organization) {
            getModel().setOrganization(organization);
        }
    
        public Organization getOrganization() {
            return getModel().getOrganization();
        }
    
        public void setScm(Scm scm) {
            getModel().setScm(scm);
        }
    
        public Scm getScm() {
            return getModel().getScm();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top