Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

build.gradle 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. sonar {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: WebServer :: PushAPI"
  4. }
  5. }
  6. dependencies {
  7. api 'javax.servlet:javax.servlet-api'
  8. api 'org.json:json'
  9. api project(':server:sonar-webserver-ws')
  10. api project(':server:sonar-webserver-auth')
  11. testImplementation 'junit:junit'
  12. testImplementation 'org.assertj:assertj-core'
  13. testImplementation 'org.junit.jupiter:junit-jupiter-api'
  14. testImplementation 'org.mockito:mockito-core'
  15. testImplementation 'org.awaitility:awaitility'
  16. testImplementation testFixtures(project(':server:sonar-webserver-ws'))
  17. testImplementation testFixtures(project(':server:sonar-db-dao'))
  18. testFixturesApi project(':sonar-testing-harness')
  19. testFixturesCompileOnly testFixtures(project(':server:sonar-webserver-ws'))
  20. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
  21. testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
  22. }
  23. test {
  24. // Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle)
  25. useJUnitPlatform()
  26. }