Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,682 for aModule (0.19 sec)

  1. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    # Gradle Module Metadata 1.0 specification
    
    Consumption of Gradle Module Metadata is automatic. However, publication needs to be enabled explicitly for any Gradle version prior to Gradle 6.
    
    Publishing Gradle Module Metadata can be enabled in the Gradle settings file (`settings.gradle`):
    
    ```
    enableFeaturePreview("GRADLE_METADATA")
    ```
    
    ## Goal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. architecture/standards/0005-introduce-core-ui-architecture-module.md

    This ADR does not specify the owner of this new architecture module. However, as a separate module, it can be assigned ownership independently of the other core services.
    
    ## Status
    
    ACCEPTED
    
    ## Consequences
    
    - Introduce the module and move the services and their implementations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/boolean-attributes.module

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 260 bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaModulesIntegrationTest.groovy

            setup:
            file("src/main/java/module-info.java") << """
                module my.module {
                    requires jmodule
                    requires jautomodule
                }
            """
    
            when:
            succeeds "eclipse"
    
            then:
            def libraries = classpath.libs
            libraries.size() == 3
            libraries[0].jarName == 'jmodule-1.0.jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.module.sha1

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.module.md5

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  7. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

    Paul Merlin <******@****.***> 1696084526 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

            └── module-info.java
    ```
    
    In the module info file, you declare a _module name_, which packages of your module you want to _export_ and which other modules you _require_.
    
    [source,java,indent=0]
    .module-info.java file
    ----
    include::{snippetsPath}/java-library/module/groovy/src/main/java/module-info.java[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencySet.java

                //
                // We assume that a test-only dependency is not a module, which corresponds to how Eclipse does test running for modules:
                // It patches the main module with the tests and expects test dependencies to be part of the unnamed module (classpath).
                return javaModuleDetector.isModule(inferModulePath && !testOnly, artifact);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromMultipleCustomPluginRepositorySpec.groovy

            and:
            repoA = mavenRepo("maven-repo")
            repoB = ivyRepo("ivy-repo")
    
            and:
            def abModule = publishPlugin(pluginAB, repoB).pluginModule
            (publishPlugin(pluginA, repoA).pluginModule as MavenModule)
                .dependsOn(abModule.group, abModule.module, abModule.version)
                .publishPom()
    
            and:
            use(repoB, repoA)
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top