Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 263 for organisation (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyFileRepoResolveIntegrationTest.groovy

            def moduleB = repo.module('group', 'projectB', '9-beta')
            moduleB.publish()
    
            and:
            buildFile << """
    repositories {
        ivy {
            artifactPattern "${repo.uri}/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
        }
    }
    configurations { compile }
    dependencies {
        compile 'group:projectA:1.2'
    }
    task retrieve(type: Sync) {
        from configurations.compile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/consuming/common/ivy-repo/com.example/sample-plugins/1.0.0/ivy-1.0.0.xml

      <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <info organisation="com.example" module="sample-plugins" revision="1.0.0" status="integration" publication="20200318132939"/>
      <configurations>
        <conf name="compile" visibility="public"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 898 bytes
    - Viewed (0)
Back to top