Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Credentials (0.2 sec)

  1. .github/workflows/maven.yml

              persist-credentials: false
    
          - name: Set up JDK
            uses: actions/setup-java@v4
            with:
              java-version: ${{ matrix.java }}
              distribution: 'temurin'
    #          cache: 'maven' - don't use cache for integration tests
    
          - uses: actions/checkout@v4
            with:
              path: maven/
              persist-credentials: false
    
          - name: Build Maven
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. .github/workflows/maven_build_itself.yml

            os: [ubuntu-latest, windows-latest]
            java: [17, 21]
          fail-fast: false
    
        runs-on: ${{ matrix.os }}
    
        steps:
          - uses: actions/checkout@v4
            with:
              persist-credentials: false
    
          - uses: actions/setup-java@v4
            with:
              java-version: ${{ matrix.java }}
              distribution: 'temurin'
              cache: 'maven'
    
          - name: Build with Maven
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * server, its credentials will be updated to match the values from the server specification. Repositories without a
         * matching server will have their credentials cleared. Note: This method must be called after
         * {@link #injectMirror(List, List)} or the repositories will end up with the wrong credentials.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
Back to top