sonar {
    properties {
        property 'sonar.projectName', "${projectTitle} :: LDAP Testing"
    }
}

dependencies {
    api 'org.apache.mina:mina-core:2.2.2'
    implementation ('org.apache.directory.server:apacheds-server-integ:2.0.0.AM26') {
        exclude group: 'log4j', module: 'log4j'
    }

    testImplementation 'junit:junit'
    testImplementation 'org.assertj:assertj-core'
    testImplementation 'org.hamcrest:hamcrest-core'
    testImplementation 'org.mockito:mockito-core'
}