Skip to content

Commit

Permalink
sonar (#2044)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcekan authored Apr 30, 2021
1 parent 7dcb3df commit 38e66ac
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
3 changes: 3 additions & 0 deletions screwdriver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ shared:
screwdriver.cd/cpu: TURBO
screwdriver.cd/ram: TURBO
image: maven:3.6.3-jdk-8
environment:
#Fetches history so Sonar can assign blame.
GIT_SHALLOW_CLONE: false

jobs:
master-commit:
Expand Down
41 changes: 41 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
sonar.modules=elide-annotations,elide-example-models,elide-core,elide-graphql,elide-datastore,elide-integration-tests,elide-standalone,elide-spring
sonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml
sonar.dependencyCheck.htmlReportPath=target/dependency-check-report.html
sonar.dependencyCheck.reportPath=target/dependency-check-report.xml
sonar.java.binaries=target/classes
sonar.java.checkstyle.reportPaths=target/checkstyle-result.xml
sonar.java.cpd.reportPaths=target/cpd.xml
sonar.java.libraries=/root/.m2/repository/**/*.jar
sonar.java.pmd.reportPaths=target/pmd.xml
sonar.java.source=1.8
sonar.java.spotbugs.reportPaths=target/spotbugs.xml
sonar.java.test.binaries=target/test-classes
sonar.junit.reportPaths=target/surefire-reports,target/failsafe-reports
sonar.sourceEncoding=UTF-8
sonar.sources=src/main/java
sonar.tests=src/test/java
elide-datastore.sonar.modules=elide-datastore-hibernate,elide-datastore-hibernate5,elide-datastore-hibernate3,elide-datastore-jpa,elide-datastore-inmemorydb,elide-datastore-multiplex,elide-datastore-noop,elide-datastore-search
elide-datastore.sonar.sources=
elide-datastore.sonar.tests=
elide-datastore.elide-datastore-hibernate.sonar.sources=src/main/java
elide-datastore.elide-datastore-hibernate.sonar.tests=src/test/java
elide-datastore.elide-datastore-hibernate3.sonar.sources=src/main/java
elide-datastore.elide-datastore-hibernate3.sonar.tests=src/test/java
elide-datastore.elide-datastore-hibernate5.sonar.sources=src/main/java
elide-datastore.elide-datastore-hibernate5.sonar.tests=src/test/java
elide-datastore.elide-datastore-inmemorydb.sonar.sources=src/main/java
elide-datastore.elide-datastore-inmemorydb.sonar.tests=src/test/java
elide-datastore.elide-datastore-jpa.sonar.sources=src/main/java
elide-datastore.elide-datastore-jpa.sonar.tests=src/test/java
elide-datastore.elide-datastore-multiplex.sonar.sources=src/main/java
elide-datastore.elide-datastore-multiplex.sonar.tests=src/test/java
elide-datastore.elide-datastore-noop.sonar.sources=src/main/java
elide-datastore.elide-datastore-noop.sonar.tests=src/test/java
elide-datastore.elide-datastore-search.sonar.sources=src/main/java
elide-datastore.elide-datastore-search.sonar.tests=src/test/java
elide-spring.sonar.modules=elide-spring-boot-autoconfigure,elide-spring-boot-starter
elide-spring.sonar.sources=
elide-spring.sonar.tests=
elide-spring.elide-spring-boot-autoconfigure.sonar.sources=src/main/java
elide-spring.elide-spring-boot-autoconfigure.sonar.tests=src/test/java
elide-integration-tests.sonar.sources=

0 comments on commit 38e66ac

Please sign in to comment.