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

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