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 797B

12345678910111213141516171819202122232425262728
  1. description = 'SonarQube :: Authentication :: SAML'
  2. configurations {
  3. testImplementation.extendsFrom compileOnly
  4. }
  5. ext {
  6. oneLoginVersion = '2.8.0'
  7. }
  8. dependencies {
  9. // please keep the list ordered
  10. compile "com.onelogin:java-saml:${oneLoginVersion}"
  11. compile "com.onelogin:java-saml-core:${oneLoginVersion}"
  12. compileOnly 'com.google.code.findbugs:jsr305'
  13. compileOnly 'com.squareup.okhttp3:okhttp'
  14. compileOnly 'javax.servlet:javax.servlet-api'
  15. compileOnly project(':server:sonar-db-dao')
  16. compileOnly project(':sonar-core')
  17. testCompile 'com.tngtech.java:junit-dataprovider'
  18. testCompile 'junit:junit'
  19. testCompile 'org.assertj:assertj-core'
  20. testCompile 'org.mockito:mockito-core'
  21. testCompile testFixtures(project(':server:sonar-db-dao'))
  22. }