Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 356 for Change (0.23 sec)

  1. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/groovy/buildSrc/src/main/groovy/myproject.publishing-conventions.gradle

    version = '1.0'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    java {
        withJavadocJar()
        withSourcesJar()
    }
    
    publishing {
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url = "${rootProject.buildDir}/repo"
            }
        }
        publications {
            ivy(IvyPublication) {
                from components.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/build.gradle

    // end::apply[]
        id 'maven-publish'
    // tag::apply[]
    }
    // end::apply[]
    
    group = 'com.myorg.conventions'
    version = '1.0'
    
    publishing {
        repositories {
            maven {
                // change to point to your repo, e.g. http://my.org/repo
                url = layout.buildDirectory.dir("repo")
            }
        }
    }
    
    tasks.named('publish') {
        dependsOn('check')
    }
    
    // end::publish[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 992 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/groovy/build.gradle

    publishing {
        publications {
            maven(MavenPublication) {
                artifact rpmArtifact
            }
        }
    // end::custom-artifact-publication[]
        repositories {
            // change URLs to point to your repo, e.g. http://my.org/repo
            maven {
                url = layout.buildDirectory.dir('repo')
            }
        }
    // tag::custom-artifact-publication[]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 933 bytes
    - Viewed (0)
  4. docs/ftp/README.md

    sftp>
    ```
    
    ## Advanced options
    
    ### Change default FTP port
    
    Default port '8021' can be changed via
    
    ```
    --ftp="address=:3021"
    ```
    
    ### Change FTP passive port range
    
    By default FTP requests OS to give a free port automatically, however you may want to restrict
    this to specific ports in certain restricted environments via
    
    ```
    --ftp="passive-port-range=30000-40000"
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    17 107
    -- db/txn-current --
    0
    -- db/txn-current-lock --
    -- db/uuid --
    53cccb44-0fca-40a2-b0c5-acaf9e75039a
    -- db/write-lock --
    -- format --
    5
    -- hooks/pre-revprop-change --
    #!/bin/sh
    
    -- hooks/pre-revprop-change.bat --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/fileAndDirectoryProperty/groovy/build.gradle

        configFile = layout.projectDirectory.file('src/config.txt')
        outputDir = layout.buildDirectory.dir('generated-source')
    }
    
    // Change the build directory
    // Don't need to reconfigure the task properties. These are automatically updated as the build directory changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinProjectMessageBusProvider.kt

    /**
     * Provides the [project]'s [MessageBus] as the Analysis API message bus. This is the default implementation for both the standalone and the
     * IDE Analysis API.
     *
     * [KotlinMessageBusProvider] exists so that this default may change in the future without breaking the API. Hence, it should not be assumed
     * that the message bus provided by [KotlinMessageBusProvider] will always be equal to the project's message bus.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 952 bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/ExperimentalOkHttpApi.kt

     * limitations under the License.
     */
    package okhttp3
    
    /**
     * Marks declarations that are experimental and subject to change without following SemVer
     * conventions. Both binary and source-incompatible changes are possible, including complete removal
     * of the experimental API.
     *
     * Do not use these APIs in modules that may be executed using a version of OkHttp different from
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ivy-publish/quickstart/groovy/build.gradle

        publications {
            ivyJava(IvyPublication) {
                from components.java
            }
        }
    // end::publish-component[]
    // tag::repositories[]
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url = layout.buildDirectory.dir("repo")
            }
        }
    // tag::publish-component[]
    }
    // end::publish-component[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 668 bytes
    - Viewed (0)
  10. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/PublishArtifactLocalArtifactMetadataCodec.kt

     *
     * A better change would be to split an immutable id type out of PublishArtifactLocalArtifactMetadata (or reuse one of the existing
     * implementations). However, the Eclipse tooling model builder assumes that the id and metadata objects are the same and also that
     * the metadata object provides access to the backing PublishArtifact. This makes the better change too large to undertake at this point,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top