diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2019-09-27 16:25:53 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-10-07 20:21:06 +0200 |
commit | 274c9faaf56a985b6221b923ddf964b809b8aa9d (patch) | |
tree | 20c8e239c4f53e982520911db715c22738608ae4 /sonar-testing-ldap/build.gradle | |
parent | 69dd7210a6086f1e7687aee5ee2986a91cab0885 (diff) | |
download | sonarqube-274c9faaf56a985b6221b923ddf964b809b8aa9d.tar.gz sonarqube-274c9faaf56a985b6221b923ddf964b809b8aa9d.zip |
SONAR-12471 Embed LDAP authentication
Diffstat (limited to 'sonar-testing-ldap/build.gradle')
-rw-r--r-- | sonar-testing-ldap/build.gradle | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sonar-testing-ldap/build.gradle b/sonar-testing-ldap/build.gradle new file mode 100644 index 00000000000..4a2fe9a4ad7 --- /dev/null +++ b/sonar-testing-ldap/build.gradle @@ -0,0 +1,15 @@ +sonarqube { + properties { + property 'sonar.projectName', "${projectTitle} :: LDAP Testing" + } +} + +dependencies { + compile 'junit:junit' + compile 'org.apache.directory.server:apacheds-all:2.0.0-M24' + compile 'org.slf4j:slf4j-api:1.7.12' + + testCompile 'org.assertj:assertj-core' + testCompile 'org.hamcrest:hamcrest-core' + testCompile 'org.mockito:mockito-core' +} |