Skip to content

Commit a185428

Browse files
committed
Merge branch 'main' of gitlab.cryptoworkshop.com:root/bc-java
2 parents 6787f24 + fa5572a commit a185428

File tree

2 files changed

+4
-22
lines changed

2 files changed

+4
-22
lines changed

build.gradle

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -281,30 +281,11 @@ subprojects {
281281
}
282282
}
283283

284-
publishing {
285-
repositories {
286-
maven {
287-
name "cwmaven"
288-
url System.getenv("CW_MAVEN_S3_URL")
289-
credentials(AwsCredentials) {
290-
accessKey System.getenv("AWS_KEY")
291-
secretKey System.getenv("AWS_SECRET")
292-
}
293-
}
294-
}
295-
}
284+
}
296285

297286

298-
jar.doLast {
299-
if (System.getenv("SIGNJAR_CMD") != null) {
300-
exec {
301-
commandLine(System.getenv("SIGNJAR_CMD"), archiveFile.get())
302-
}
303-
}
304-
}
287+
test.dependsOn([':core:test', ':prov:test', ':prov:test11', ':prov:test15', ':prov:test21', ':pkix:test', 'pg:test', ':tls:test', 'mls:test', 'mail:test', 'jmail:test'])
305288

306289

307-
}
308290

309291

310-
test.dependsOn([':core:test', ':prov:test', ':prov:test11', ':prov:test15', ':prov:test21', ':pkix:test', 'pg:test', ':tls:test', 'mls:test', 'mail:test', 'jmail:test'])

prov/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ plugins {
33
}
44

55
dependencies {
6-
implementation project(':core')
76
testImplementation files('../libs/unboundid-ldapsdk-6.0.8.jar')
87
}
98

9+
evaluationDependsOn(":core")
10+
1011
sourceSets {
1112
main {
1213
java {

0 commit comments

Comments
 (0)