You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 557B

1234567891011121314151617181920212223242526
  1. sonar {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Java Tests Monitoring"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. api 'com.google.code.gson:gson'
  9. api 'junit:junit'
  10. compileOnlyApi 'org.aspectj:aspectjtools'
  11. compileOnlyApi 'com.google.code.findbugs:jsr305'
  12. testImplementation 'org.assertj:assertj-core'
  13. testImplementation 'org.mockito:mockito-core'
  14. }
  15. tasks.withType(JavaCompile) {
  16. options.release = 11
  17. }
  18. sonar {
  19. skipProject = true
  20. }