Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for mylib (0.03 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            """
    
            when:
            run ':outgoingVariants'
    
            then:
            def jarPath = file('build/libs/myLib-1.0.jar').getRelativePathFromBase()
            def javadocJarPath = file('build/libs/myLib-1.0-javadoc.jar').getRelativePathFromBase()
            def sourcesJarPath = file('build/libs/myLib-1.0-sources.jar').getRelativePathFromBase()
            def builtMainClassesPath = file('build/classes/java/main').getRelativePathFromBase()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/publishing-process.graffle

    {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;\f1\fnil\fcharset0 Menlo-Regular;\f2\fnil\fcharset0 Menlo-Italic; } {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs24 \cf0 Task \f1 publish \f2\i MyLib \f1\i0 PublicationTo \f2\i MyRepo \f1\i0 Repository}WrapNOBounds{{336.3999964594841, 32.099998712539673}, {144, 67.83999964594841}}ClassShapedGraphicFo{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf400 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/groovy/build.gradle

     * limitations under the License.
     */
    
    // tag::platform_uses_catalog[]
    plugins {
        id 'java-platform'
    }
    
    dependencies {
        constraints {
            api(libs.mylib)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 782 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    long-notation = { id = "some.plugin.id", version = "1.4" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    my-lib = "com.mycompany:mylib:1.4"
    my-lib-no-version.module = "com.mycompany:mylib"
    my-other-lib = { module = "com.mycompany:other", version = "1.4" }
    my-other-lib2 = { group = "com.mycompany", name = "alternate", version = "1.4" }
    mylib-full-format = { group = "com.mycompany", name = "alternate", version = { require = "1.4" } }
    
    [plugins]
    short-notation = "some.plugin.id:1.4"
    long-notation = { id = "some.plugin.id", version = "1.4" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    ## Usage in a Maven repository
    
    When present in a Maven module, the file must have the extension `module`. For example, in version 1.2 of 'mylib', the file should be called `mylib-1.2.module`.
    
    Gradle ignores the contents of the Maven POM when the module metadata file is present.
    
    ## Contents
    
    The file must be encoded using UTF-8.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/groovy/settings.gradle

     * limitations under the License.
     */
    rootProject.name = 'platform'
    
    dependencyResolutionManagement {
        versionCatalogs {
            libs {
                library('mylib', 'org:mylib:1.0')
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformUsage/kotlin/build.gradle.kts

     * limitations under the License.
     */
    
    // tag::platform_uses_catalog[]
    plugins {
        `java-platform`
    }
    
    dependencies {
        constraints {
            api(libs.mylib)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 779 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyNotationParser.java

            @Override
            public void describe(DiagnosticsVisitor visitor) {
                visitor.candidate("Map with mandatory 'library' and optional 'project' and 'linkage' keys").example("[project: ':someProj', library: 'mylib', linkage: 'static']");
            }
    
            @SuppressWarnings("unused")
            protected NativeLibraryRequirement parseMap(
                @MapKey("library") String libraryName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

            result.projectPath == projectPath
            result.libraryName == libraryName
    
            where:
            projectPath | libraryName
            ':myPath'   | null
            ':myPath'   | 'myLib'
            ':myPath'   | null
            ':myPath'   | 'myLib'
        }
    
        def "serializes version constraint"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top