Newer
Older
BouncyScrypt / build.gradle
Mark George on 16 Nov 2018 376 bytes Initial commit.
plugins {
	id 'java'
}

repositories {
	jcenter()
}

dependencies {
	compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.60'

	testImplementation group: 'junit', name: 'junit', version: '4.12'
	testImplementation group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'

}

test.onlyIf {
	project.gradle.startParameter.taskNames.contains(':test');
}