diff --git a/README.md b/README.md index bc59fc5..c6a6da7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +To test3 [Codecov][0] Java Example ========================= diff --git a/qube.yaml b/qube.yaml new file mode 100644 index 0000000..2dab3b8 --- /dev/null +++ b/qube.yaml @@ -0,0 +1,32 @@ +id: 2aa2db76-5360-4c9b-9334-f2c8ba783f7e +version: v2 +name: example-java +apptype: api +language: java +containerName: example-java +toolchain: + id: 58f1613b8ef1e700214218c8 + name: Qubeship-Java-Toolchain +opinion: + id: 58f53cbfe936e0000b151351 + name: Qubeship default opinion +endpoint: + id: 58f16141238503000b74d7bf + name: Qubeship Sandbox Cluster + type: target +variables: + - name: APP_VERSION + value: v0.1 +build: + compile: + publish: + - target/ +bake: + skip: false +test: + skip: true +deploy_to_qa: + skip: true +deploy_to_prod: + skip: false + diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000..1d7fb3f --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,17 @@ +# must be unique in a given SonarQube instance +sonar.projectKey=example-java-codv +# this is the name displayed in the SonarQube UI +sonar.projectName=example java project small +sonar.projectVersion=1.0 + +# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. +# Since SonarQube 4.2, this property is optional if sonar.modules is set. +# If not set, SonarQube starts looking for source code from the directory containing +# the sonar-project.properties file. +sonar.sources=. + +# Encoding of the source code. Default is default system encoding +#sonar.sourceEncoding=UTF-8 + +sonar.junit.reportsPath=target/surefire-reports +sonar.jacoco.reportPaths=target/jacoco.exec, target/jacoco-it.exec