Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,190 for moduleB (0.14 sec)

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

    _Gradle Module Metadata 1.1 is supported in Gradle 6._
    
    Gradle publishes Gradle Module Metadata along with traditional metadata. Gradle Module Metadata is automatically consumed when available.
    
    ## Goal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. maven-compat/src/test/resources/inheritance-repo/t12scm/maven/p0/1.0/p0-1.0.pom

      <scm>
        <connection>scm:svn:http://host/p0</connection>
        <developerConnection>scm:svn:https://host/p0</developerConnection>
        <url>http://host/viewer?path=/p0</url>
      </scm>
    
      <modules>
        <module>modules/p1</module>
      </modules>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 412 bytes
    - Viewed (0)
  3. maven-compat/src/test/resources/inheritance-repo/t12scm/p0/pom.xml

      <scm>
        <connection>scm:svn:http://host/p0</connection>
        <developerConnection>scm:svn:https://host/p0</developerConnection>
        <url>http://host/viewer?path=/p0</url>
      </scm>
    
      <modules>
        <module>modules/p1</module>
      </modules>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 412 bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

        /**
         * {@return the type of path detected}. The return value is {@link JavaPathType#MODULES}
         * if the dependency is a modular JAR file or a directory containing module descriptor(s),
         * or {@link JavaPathType#CLASSES} otherwise. A JAR file without module descriptor but with
         * an "Automatic-Module-Name" manifest attribute is considered modular.
         */
        public JavaPathType getPathType() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    [short] skip
    
    # 'go run pkg@version' works outside a module.
    env GO111MODULE=auto
    go run example.com/cmd/a@v1.0.0
    stdout '^a@v1.0.0$'
    
    
    # 'go run pkg@version' reports an error if modules are disabled.
    env GO111MODULE=off
    ! go run example.com/cmd/a@v1.0.0
    stderr '^go: modules disabled by GO111MODULE=off; see ''go help modules''$'
    env GO111MODULE=on
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

            //then
            def dependencies = parseIml("api/api.iml").dependencies
            assert dependencies.modules.size() == 1
            dependencies.assertHasModule(['COMPILE'], "root-project-1")
    
            dependencies = parseIml("root-project-1.iml").dependencies
            assert dependencies.modules.size() == 0
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void respectsApiOfJavaLibraries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/workcmd/work.go

    root modules by the go command for builds and related operations.  A
    workspace that does not specify modules to be used cannot be used to do
    builds from local modules.
    
    go.work files are line-oriented. Each line holds a single directive,
    made up of a keyword followed by arguments. For example:
    
    	go 1.18
    
    	use ../foo/bar
    	use ./baz
    
    	replace example.com/foo v1.2.3 => example.com/bar v1.4.5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/apiWtpComponent.xml

    <project-modules id="moduleCoreId" project-version="1.5.0">
    	<wb-module deploy-name="api">
    		<wb-resource deploy-path="/" source-path="src/main/java"/>
    		<wb-resource deploy-path="/" source-path="src/main/resources"/>
    		<wb-resource deploy-path="/" source-path="src/main/testbutnottest"/>
    	</wb-module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 322 bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/mod.go

    var CmdMod = &base.Command{
    	UsageLine: "go mod",
    	Short:     "module maintenance",
    	Long: `Go mod provides access to operations on modules.
    
    Note that support for modules is built into all the go commands,
    not just 'go mod'. For example, day-to-day adding, removing, upgrading,
    and downgrading of dependencies should be done using 'go get'.
    See 'go help modules' for an overview of module functionality.
    	`,
    
    	Commands: []*base.Command{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 807 bytes
    - Viewed (0)
Back to top