Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 132 for milestones (0.15 sec)

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

        publications {
            ivy(IvyPublication) {
                organisation = 'org.gradle.sample'
                module = 'project1-sample'
                revision = '1.1'
                descriptor.status = 'milestone'
                descriptor.branch = 'testing'
                descriptor.extraInfo 'http://my.namespace', 'myElement', 'Some value'
    
                from components.java
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 660 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/kotlin/build.gradle.kts

        publications {
            create<IvyPublication>("ivy") {
                organisation = "org.gradle.sample"
                module = "project1-sample"
                revision = "1.1"
                descriptor.status = "milestone"
                descriptor.branch = "testing"
                descriptor.extraInfo("http://my.namespace", "myElement", "Some value")
    
                from(components["java"])
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 678 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/sample-ide/build.gradle

        }
    }
    
    application {
        mainClass = 'org.gradle.sample.SampleIde'
    }
    
    dependencies {
        implementation('reporters:model-builder-plugin')
        implementation('org.gradle:gradle-tooling-api:8.6-milestone-1')
    }
    
    tasks.run.configure {
        args = [
            rootBuild(project.gradle).rootProject.projectDir.absolutePath, // The path of the project (this project's root)
            ':sample-project:assemble'  // The executed task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 735 bytes
    - Viewed (0)
  4. .github/workflows/pull-metadata.yml

    permissions: {}
    
    jobs:
      check_pull_metadata:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Check that PRs have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/pull-metadata.ts
          - uses: gradle/issue-management-action@v1
            with:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 477 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLatestResolveIntegrationTest.groovy

            when:
            run 'retrieve'
    
            then:
            def buildDir = file('build')
            buildDir.assertHasDescendants(highest.artifactFile.name)
    
            where:
            status << ["integration", "milestone", "release"]
        }
    
        def "latest selector with unknown status leads to failure"() {
            mavenRepo().module('group', 'projectA', '1.0').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/with-nondefault-status.module

    {
        "formatVersion": "1.0",
        "component": {
            "group": "org.gradle.test",
            "module": "publishTest",
            "version": "1.9",
            "attributes": {
                "org.gradle.status": "milestone"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 231 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

                context.details.changing = true
        }
    }
    
    class VerifyingRule implements ComponentMetadataRule {
        public void execute(ComponentMetadataContext context) {
                assert context.details.status == "integration.changed"
                assert context.details.statusScheme == ["integration.changed", "milestone.changed", "release.changed"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/repo/org.sample/api/1.3.0/ivy-1.3.0.xml

      ~ 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)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorSpec.java

    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * The descriptor of any Ivy publication.
     * <p>
     * Corresponds to the <a href="http://ant.apache.org/ivy/history/latest-milestone/ivyfile.html">XML version of the Ivy Module Descriptor</a>.
     * <p>
     * The {@link #withXml(org.gradle.api.Action)} method can be used to modify the descriptor after it has been generated according to the publication data.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaLanguageLevel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    /**
     * Language level setting for IDEA.
     *
     * @since 1.0-milestone-5
     */
    public interface IdeaLanguageLevel {
    
        /**
         * Gets the level value
         */
        String getLevel();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 838 bytes
    - Viewed (0)
Back to top