Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for mylib (0.03 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                            version("myLib") {
                                strictly("[1.0,1.1)")
                            }
                            library("myLib", "org.gradle.test", "lib-core").versionRef("myLib")
                            library("myLib-ext", "org.gradle.test", "lib-ext").versionRef("myLib")
                            bundle("myBundle", listOf("myLib"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-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: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

    class ResolvableConfigurationsReportTaskIntegrationTest extends AbstractIntegrationSpec implements InspectsConfigurationReport {
        def setup() {
            settingsFile << """
                rootProject.name = "myLib"
            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':resolvableConfigurations'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            project.group = 'my.group'
            project.library.baseName = 'mylib'
            project.evaluate()
    
            then:
            def publishing = project.publishing
            publishing.publications.size() == 3
    
            def main = publishing.publications.main
            main.groupId == 'my.group'
            main.artifactId == 'mylib'
            main.version == '1.2'
            main.artifacts.size() == 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    The typical example is that using a single dependency declaration `project(":myLib")`, we would either choose the `arm64` or `i386` version of `myLib` depending on the architecture.
    
    To do this, we will add attributes to both the consumer and the producer.
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

    <application xmlns="http://java.sun.com/xml/ns/javaee" ${xsi.join(" ")} version="6">
      <application-name>customear</application-name>
      <display-name>displayname</display-name>
      <library-directory>mylib-$metaInfFolder</library-directory>
    </application>
    """)
    
            file("$metaInfFolder/application.xml").createFile().write(applicationXml)
            buildFile << """
    apply plugin: 'ear'
    ear {
        $appConfig
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    In case you want to reference a version declared in the `[versions]` section, you should use the `version.ref` property:
    
    ```
    [versions]
    some = "1.4"
    
    [libraries]
    my-lib = { group = "com.mycompany", name="mylib", version.ref="some" }
    ```
    
    --
    The TOML file format is very lenient and lets you write "dotted" properties as shortcuts to full object declarations.
    For example, this:
    
    ```
    a.b.c="d"
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top