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