sonarqube/server/sonar-db-migration/build.gradle
Eric Hartmann 7f88e7c22d SONAR-6949 Implements bcrypt hash for password
Extract hash mechanism into a single class LocalAuthentication
Implements SHA1 (deprecated) and bcrypt hash
Set bcrypt as default
Update the hash of a user during authentication if hash method was SHA1
2018-04-17 20:20:48 +02:00

50 lines
1.2 KiB
Groovy

sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: Database Migration"
}
}
dependencies {
// please keep the list grouped by configuration and ordered by name
compile project(':server:sonar-db-core')
compile project(':sonar-core')
compileOnly 'com.google.code.findbugs:jsr305'
testCompile 'com.google.code.findbugs:jsr305'
testCompile 'com.tngtech.java:junit-dataprovider'
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
testCompile 'org.dbunit:dbunit'
testCompile 'org.mockito:mockito-core'
testCompile 'org.mindrot:jbcrypt'
testCompile project(':sonar-testing-harness')
testCompile project(':server:sonar-db-core').sourceSets.test.output
testRuntime 'com.h2database:h2'
testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
testRuntime 'com.oracle.jdbc:ojdbc8'
testRuntime 'mysql:mysql-connector-java'
testRuntime 'org.postgresql:postgresql'
}
test {
systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
}
artifactoryPublish.skip = false
// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
}
}
}
}