1version: 0.2 2 3phases: 4 install: 5 runtime-versions: 6 java: "$JAVA_RUNTIME" 7 8 build: 9 commands: 10 - mvn clean install -P stability-tests -pl :stability-tests --am $MAVEN_OPTIONS 11 - echo $MAVEN_OPTIONS 12 finally: 13 - mkdir -p codebuild-test-reports 14 - find ./ -name 'TEST-*.xml' -type f -exec cp {} codebuild-test-reports/ \; 15reports: 16 StabilityTests: 17 files: 18 - 'codebuild-test-reports/**/*' 19