fix: pom.xml to reduce vulnerabilities #168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Feature Branch | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
- 'release*' | |
jobs: | |
test: | |
name: Unit Test | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.11 | |
- name: Maven Package | |
run: mvn -B clean package -DskipTests | |
- name: Maven Verify | |
run: mvn -B clean verify -Pcomponent-test |