Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 365 for dependency (0.06 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Dependency extends Artifact {
        /**
         * {@return the type of the dependency}
         * A dependency can be a <abbr>JAR</abbr> file,
         * a modular-<abbr>JAR</abbr> if it is intended to be placed on the module path,
         * a <abbr>JAR</abbr> containing test classes, <i>etc.</i>
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-05 14:29
    - 2.8K bytes
    - Viewed (0)
  2. .github/workflows/submit-github-dependency-graph.yml

    name: Submit Dependency Graph
    on:
      workflow_dispatch:
      push:
        branches:
          - master
    
    permissions: {}
    
    jobs:
      generate-and-submit:
        permissions:
          contents: write
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@v4
        - uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 17
        - name: Setup Gradle
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-11-12 13:14
    - 933 bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            resolutionStrategy.capabilitiesResolution.all {
                selectHighestVersion()
            }
        }
    }
    
    fun readCapabilitiesFromJson() {
        val capabilitiesFile = repoRoot().file("gradle/dependency-management/capabilities.json").asFile
        val capabilities: List<CapabilitySpec> = readCapabilities(capabilitiesFile)
        capabilities.forEach {
            it.configure(dependencies.components, configurations)
        }
    }
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-01 14:55
    - 9.4K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    For example, `dependency_c` can have a dependency on `dependency_b`, and `dependency_b` on `dependency_a`:
    
    {* ../../docs_src/dependencies/tutorial008_an_py39.py hl[6,14,22] *}
    
    And all of them can use `yield`.
    
    In this case `dependency_c`, to execute its exit code, needs the value from `dependency_b` (here named `dep_b`) to still be available.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 12.1K bytes
    - Viewed (0)
  5. fess-crawler-opensearch/pom.xml

    			<version>${corelib.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs.fesen.client</groupId>
    			<artifactId>fesen-httpclient</artifactId>
    			<version>${fesen.httpclient.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.lastaflute</groupId>
    			<artifactId>lasta-di</artifactId>
    			<version>${lasta.di.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>jakarta.transaction</groupId>
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-02-13 06:55
    - 3.4K bytes
    - Viewed (0)
  6. fess-crawler-lasta/pom.xml

    			<scope>provided</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>sai</artifactId>
    			<version>${sai.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>junit</groupId>
    			<artifactId>junit</artifactId>
    			<version>${junit.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.dbflute.utflute</groupId>
    Registered: 2025-05-25 03:50
    - Last Modified: 2024-07-29 03:48
    - 2.9K bytes
    - Viewed (0)
  7. pom.xml

    		</dependency>
    		<dependency>
    			<groupId>org.codelibs.opensearch</groupId>
    			<artifactId>opensearch-runner</artifactId>
    			<version>${opensearch.runner.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>junit</groupId>
    			<artifactId>junit</artifactId>
    			<version>${junit.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    Registered: 2025-06-06 09:08
    - Last Modified: 2025-04-17 13:35
    - 3.8K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/testing-dependencies.md

    There are some scenarios where you might want to override a dependency during testing.
    
    You don't want the original dependency to run (nor any of the sub-dependencies it might have).
    
    Instead, you want to provide a different dependency that will be used only during tests (possibly only some specific tests), and will provide a value that can be used where the value of the original dependency was used.
    
    ### Use cases: external service
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-10 17:40
    - 2.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         */
        String TEST_JAVA_SOURCE = "test-java-source";
    
        /**
         * Returns the dependency type id.
         * The id uniquely identifies this <i>dependency type</i>.
         *
         * @return the id of this type, never {@code null}.
         */
        @Nonnull
        String id();
    
        /**
         * Returns the dependency type language.
         *
         * @return the language of this type, never {@code null}.
         */
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-03 11:22
    - 6.5K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/get-current-user.md

    ## Create a `get_current_user` dependency
    
    Let's create a dependency `get_current_user`.
    
    Remember that dependencies can have sub-dependencies?
    
    `get_current_user` will have a dependency with the same `oauth2_scheme` we created before.
    
    The same as we were doing before in the *path operation* directly, our new dependency `get_current_user` will receive a `token` as a `str` from the sub-dependency `oauth2_scheme`:
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 17:03
    - 3.8K bytes
    - Viewed (0)
Back to top