Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for organisation (0.49 sec)

  1. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                        ivy {
                            url "http://repo.internal.net/ivy"
                            patternLayout {
                                ivy '[organisation]/[module]/[revision]/[module]-[revision].ivy'
                                artifact '[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]'
                                m2compatible true
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/tasks/IvyDescriptorFileGenerator.java

                    xmlWriter.attribute("xmlns:m", "http://ant.apache.org/ivy/maven");
                }
    
                xmlWriter.startElement("info")
                    .attribute("organisation", model.organisation)
                    .attribute("module", model.module)
                    .attribute("branch", model.branch)
                    .attribute("revision", model.revision)
                    .attribute("status", model.status)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         */
        void setArtifacts(Iterable<?> sources);
    
        /**
         * Returns the organisation for this publication.
         */
        String getOrganisation();
    
        /**
         * Sets the organisation for this publication.
         */
        void setOrganisation(String organisation);
    
        /**
         * Returns the module for this publication.
         */
        String getModule();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

     * Standard metadata like `module`, `organisation` and `revision`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

                        ivy {
                            url "${repo.uri}"
                            patternLayout {
                                ivy '[organisation]/[module]/[revision]/[module]-[revision].ivy'
                                artifact '[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]'
                                m2compatible true
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

        }
    
        void "can resolve dependencies from a remote Ivy repository with pattern layout and m2compatible: #m2Compatible"() {
            given:
            def remoteIvyRepo = server.getRemoteIvyRepo(m2Compatible, "[module]/[organisation]/[revision]")
            def module = remoteIvyRepo.module('org.group.name', 'projectA', '1.2')
            module.publish()
    
            and:
            buildFile << """
                repositories {
                    ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/bigger-applications.md

    Stellen wir uns nun vor, dass Ihre Organisation Ihnen die Datei `app/internal/admin.py` gegeben hat.
    
    Sie enthält einen `APIRouter` mit einigen administrativen *Pfadoperationen*, die Ihre Organisation zwischen mehreren Projekten teilt.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

            given:
            setupRepositories([target, 'ivy'])
            repository('ivy') {
                "org:ivy:1.0" {
                    withModule(IvyModule) {
                        dependsOn([organisation: 'org', module: target, revision: '1.0', conf: 'runtime->compile'])
                    }
                }
            }
    
            when:
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

                        ivy {
                            url "${ivyRepo.uri}"
                            patternLayout {
                                artifact "[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])"
                                ivy "[organisation]/[module]/[revision]/[module]-[revision].ivy"
                            }
                        }
                    }
                    publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

        public String getOrganisation() {
            return descriptor.getCoordinates().getOrganisation().get();
        }
    
        @Override
        public void setOrganisation(String organisation) {
            descriptor.getCoordinates().getOrganisation().set(organisation);
        }
    
        @Override
        public String getModule() {
            return descriptor.getCoordinates().getModule().get();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
Back to top