Skip to content

Add support for using maven/system properties for an ARG used as the FROM image in a dockerfile #617

Add support for using maven/system properties for an ARG used as the FROM image in a dockerfile

Add support for using maven/system properties for an ARG used as the FROM image in a dockerfile #617

Workflow file for this run

name: Windows Maven Build
env:
MAVEN_ARGS: -B -C -V -ntp -Dhttp.keepAlive=false -e
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Windows Java ${{ matrix.java }} Maven
runs-on: windows-latest
strategy:
matrix:
java: [8, 11]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build Project
run: mvn %MAVEN_ARGS% clean install