Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 356 for organisation (0.18 sec)

  1. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/kotlin/build.gradle.kts

        repositories {
            ivy {
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    // tag::customize-identity[]
        publications {
            create<IvyPublication>("ivy") {
                organisation = "org.gradle.sample"
                module = "project1-sample"
                revision = "1.1"
                descriptor.status = "milestone"
                descriptor.branch = "testing"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 678 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canHaveCycleInDependencyGraph/projectA-1.2-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectA"
    		revision="1.2"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectA" type="jar" ext="jar" conf="runtime"/>
    	</publications>
        <dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 514 bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisher.java

        }
    
        private void validateMetadata(IvyNormalizedPublication publication) {
            ModuleVersionIdentifier identity = publication.getCoordinates();
    
            IvyFieldValidator organisation = field(publication, "organisation", identity.getGroup())
                    .notEmpty()
                    .validInFileName();
            IvyFieldValidator moduleName = field(publication, "module name", identity.getName())
                    .notEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/repo/org.sample/api/1.3.0/ivy-1.3.0.xml

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <ivy-module version="2.0">
        <info organisation="org.sample"
              module="api"
              revision="1.3.0"
              status="milestone" />
        <publications>
            <artifact />
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 852 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/repo/org.sample/api/1.4/ivy-1.4.xml

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <ivy-module version="2.0">
        <info organisation="org.sample"
              module="api"
              revision="1.4"
              status="experimental" />
        <publications>
            <artifact />
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 853 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/repo/org.sample/lib/1.9/ivy-1.9.xml

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <ivy-module version="2.0">
        <info organisation="org.sample"
              module="lib"
              revision="1.9"
              branch="release"
              />
        <publications>
            <artifact />
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 858 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/repo/org.sample/api/1.5/ivy-1.5.xml

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <ivy-module version="2.0">
        <info organisation="org.sample"
              module="api"
              revision="1.5"
              status="integration"
              branch="test"
              />
        <publications>
            <artifact />
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 886 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenPattern.java

        public static final String M2_PER_MODULE_PATTERN = "[revision]/" + M2_PER_MODULE_VERSION_PATTERN;
        public static final String M2_PATTERN = "[organisation]/[module]/" + M2_PER_MODULE_PATTERN;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1022 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

    dependencies {
        compile 'group:projectA:1.2'
    }
    """
    
            and:
            def parent = ivyHttpRepo.module('group', 'parent', 'a')
            def module = ivyHttpRepo.module('group', 'projectA', '1.2').extendsFrom(organisation: 'group', module: 'parent', revision: 'a').publish()
    
            when:
            module.ivy.expectGet()
            parent.ivy.expectGetMissing()
    
            then:
            fails "checkDeps"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. 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)
Back to top