* Fix headers in messaging with this change the span related headers are changed to be compatible with messaging specs. The change is backwards compatible so we accept the old ones as input, and as output we're producing both new and old headers. fixes #332
21 lines
811 B
YAML
21 lines
811 B
YAML
machine:
|
|
java:
|
|
version: oraclejdk8
|
|
environment:
|
|
_JAVA_OPTIONS: "-Xms1024m -Xmx2048m"
|
|
dependencies:
|
|
override:
|
|
- ./mvnw -s .settings.xml --fail-never dependency:go-offline || true
|
|
test:
|
|
override:
|
|
- ./mvnw -s .settings.xml clean org.jacoco:jacoco-maven-plugin:prepare-agent install -P sonar -nsu --batch-mode -Dmaven.test.redirectTestOutputToFile=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
|
|
post:
|
|
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
|
|
- find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
notify:
|
|
webhooks:
|
|
# A list of hook hashes, containing the url field
|
|
# gitter hook
|
|
- url: https://webhooks.gitter.im/e/fac69f6fc000ef14f7ec |