Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ivyauthor (0.14 sec)

  1. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

                url = "http://example.com/bob/"
            }
    
            then:
            with (ivyXml.info) {
                ivyauthor.size() == 2
                ivyauthor[0].@name == "Alice"
                ivyauthor[0]******@****.***y()
                ivyauthor[1].@name == "Bob"
                ivyauthor[1].@url == "http://example.com/bob/"
            }
        }
    
        def "writes supplied description" () {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

               branch="branch"
    	       publication="20041101110000"
    	       e:attr1="value1">
    
    		<license name="MyLicense" url="http://www.my.org/mymodule/mylicense.html"/>
    		<ivyauthor name="jayasoft" url="http://www.jayasoft.org/"/>
    		<ivyauthor name="myorg" url="http://www.myorg.org/"/>
    		<repository name="ivyrep" url="http://www.jayasoft.fr/org/ivyrep/" pattern="[organisation]/[module]/ivy-[revision].xml" ivys="true" artifacts="false"/>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

            branch = ivy.info[0].@branch
            resolver = ivy.info[0].@resolver
            description = ivy.info[0].description[0]
            licenses = ivy.info[0].license
            authors = ivy.info[0].ivyauthor
    
            extraInfo = [:]
            ivy.info[0].children().findAll { it.name() instanceof QName }.each {
                extraInfo[new javax.xml.namespace.QName(it.name().namespaceURI, it.name().localPart)] = it.text()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/tasks/IvyDescriptorFileGenerator.java

                        .endElement();
                }
    
                for (IvyModuleDescriptorAuthor author : model.authors) {
                    xmlWriter.startElement("ivyauthor")
                        .attribute("name", author.getName().getOrNull())
                        .attribute("url", author.getUrl().getOrNull())
                        .endElement();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        getMd().addLicense(new License(substitute(attributes.getValue("name")), substitute(attributes.getValue("url"))));
                    } else if (state == State.INFO && "ivyauthor".equals(qName)) {
                        // nothing to do, we don't store this
                        return;
                    } else if (state == State.INFO && "repository".equals(qName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            // standard doclet options
            assertNull(options.getDestinationDirectory());
            assertFalse(options.isUse());
            assertFalse(options.isVersion());
            assertFalse(options.isAuthor());
            assertFalse(options.isSplitIndex());
            assertNull(options.getWindowTitle());
            assertNull(options.getDocTitle());
            assertNull(options.getFooter());
            assertNull(options.getBottom());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            return version(true);
        }
    
        /**
         * -author
         * <p>
         * Includes the @author text in the generated docs.
         */
        @Input
        public boolean isAuthor() {
            return author.getValue();
        }
    
        public void setAuthor(boolean author) {
            this.author.setValue(author);
        }
    
        public StandardJavadocDocletOptions author(boolean author) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.external.javadoc.StandardJavadocDocletOptions.isAuthor()> does not have raw return type assignable to org.gradle.api.provider.Property in (StandardJavadocDocletOptions.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