Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 17 (0.11 sec)

  1. .github/workflows/maven.yml

        runs-on: ${{ matrix.os }}
    
        steps:
          - uses: actions/checkout@v4
            with:
              persist-credentials: false
    
          - uses: actions/setup-java@v4
            with:
              java-version: 17
              distribution: 'temurin'
              cache: 'maven'
    
          - name: Build with Maven
            run: mvn verify -e -B -V -DdistributionFileName=apache-maven
    
          - name: Upload built 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

        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
            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
    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-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    CreationDate2007-03-15 15:23:17 -0400CreatorJohn.altGraphDocumentVers{0, 0}CanvasScale1ColumnAl in = 1 inGraphicsListGridIn 1PrintYESViewYESLayo 1UniqueID1VPages1Mod-03-15 16:57:24 -0400ModifierJohn.altNotesVisibleNOOri{792, 612}NSRightMarginfloat0N{0, 0}CanvasScale1ColumnAl in = 1 inGraphicsListBounds{{607.473, 151.036}, {112, 28}}ClassShapedGraphicFi.3192139267921448Rota{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica-Oblique;} {\colortbl;\red255\green255\blue255;}...
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 11 17:19:02 GMT 2017
    - 96.7K bytes
    - Viewed (0)
Back to top