GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
2
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
mark.george
/
BouncyScrypt
Browse code
Update bouncy castle dependency
master
1 parent
0a22e17
commit
793e4c91950483497ffdccd9d33b44c2083967ba
Mark George
authored
on 4 Oct 2020
Patch
Showing
1 changed file
build.gradle
Ignore Space
Show notes
View
build.gradle
plugins { id 'java' } repositories { jcenter() } dependencies { compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.66' 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'); }
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'); }
Show line notes below