Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 110 for project1 (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    ====
    
    Note that a project that is substituted must be included in the multi-project build (via `settings.gradle`).
    Dependency substitution rules take care of replacing the module dependency with the project dependency and wiring up any task dependencies, but do not implicitly include the project in the build.
    
    [[sub:project_to_module_substitution]]
    === Substituting a project dependency with a module replacement
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    wagon-ssh 1.0-alpha-5 org.apache.maven.wagon wagon-file 1.0-alpha-5 org.apache.maven.wagon wagon-http-lightweight 1.0-alpha-5 repo1 Maven Central Repository scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 snapshots Maven Central Development Repository scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2 website scp://minotaur.apache.org/www/maven.apache.org/maven2/maven-plugin-api META-INF/maven/org.apache.maven/maven-plugin-api/pom.properties...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 9.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Gradle will inspect the group and name for the projects in the included build and substitute project dependencies for any external dependency matching `${project.group}:${project.name}`.
    
    [NOTE]
    ====
    By default, substitutions are not registered for the _main_ build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                                    }
                                }
                            }
                            cathedral(NativeLibrarySpec) {
                                sources {
                                    cpp {
                                        lib project: ':api', library: 'api'
                                        lib project: ':spi', library: 'spi'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    You can see the project paths when running `gradle projects`:
    
    [source]
    ----
    ------------------------------------------------------------
    Root project 'project'
    ------------------------------------------------------------
    
    Root project 'project'
    +--- Project ':sub-project-1'
    \--- Project ':sub-project-2'
    ----
    
    Project paths usually reflect the filesystem layout, but there are exceptions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    Resolving a configuration can have side effects on Gradle's project model.
    As a result, Gradle must manage access to each project's configurations.
    There are a number of ways a configuration might be resolved unsafely.
    For example:
    
    * A task from one project directly resolves a configuration in another project in the task's action.
    * A task specifies a configuration from another project as an input file collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/path/filepath/path_test.go

    	{"/a", "a", "err"},
    }
    
    var winreltests = []RelTests{
    	{`C:a\b\c`, `C:a/b/d`, `..\d`},
    	{`C:\`, `D:\`, `err`},
    	{`C:`, `D:`, `err`},
    	{`C:\Projects`, `c:\projects\src`, `src`},
    	{`C:\Projects`, `c:\projects`, `.`},
    	{`C:\Projects\a\..`, `c:\projects`, `.`},
    	{`\\host\share`, `\\host\share\file.txt`, `file.txt`},
    }
    
    func TestRel(t *testing.T) {
    	tests := append([]RelTests{}, reltests...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaProjectIntegrationTest.groovy

        void "can recursively build dependent and dependee projects"() {
            createDirs("a", "b", "c")
            testFile("settings.gradle") << "include 'a', 'b', 'c'"
            testFile("build.gradle") << """
                allprojects { apply plugin: 'java-library' }
    
                project(':a') {
                    dependencies { api project(':b') }
                }
    
                project(':b') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    └── url-verifier-plugin    // <2>
        ├── build.gradle
        ├── settings.gradle
        └── src
    ----
    <1> Consuming project that includes the plugin project
    <2> The plugin project
    
    There are two ways to include a plugin project in a consuming project:
    
    1. By using the command line option `--include-build`.
    
    2. By using the method `includeBuild` in `settings.gradle`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

                }
                println project.path + " cached: " + StaticState.set.getAndSet(true)
            """
        }
    
        def addIsCachedCheck(String project = null) {
            file((project ? "$project/" : "") + "build.gradle") << isCachedCheck
        }
    
        private boolean isCached(String projectPath = ":") {
            assert output.contains("$projectPath cached:"): "no cache flag for project"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
Back to top