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'); }