Skip to content

Commit b233d73

Browse files
committed
Apply maven-publish and signing explicitly in relevant projects
1 parent 711efd3 commit b233d73

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,6 @@ subprojects { project ->
220220

221221
if (project.hasProperty('publishMe') && project.publishMe) {
222222

223-
apply plugin: 'maven-publish'
224-
apply plugin: 'signing'
225-
226223
if (getGitCommit() == null) {
227224
throw new RuntimeException("Failed to get git commit ID");
228225
}

webauthn-server-attestation/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
plugins {
22
id 'java-library'
33
id 'scala'
4+
id 'maven-publish'
5+
id 'signing'
46
id 'io.github.cosmicsilence.scalafix'
57
}
68

webauthn-server-core-bundle/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
plugins {
22
id 'java-library'
3+
id 'maven-publish'
4+
id 'signing'
35
}
46

57
description = 'Yubico WebAuthn server core API'

webauthn-server-core/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
plugins {
22
id 'java-library'
33
id 'scala'
4+
id 'maven-publish'
5+
id 'signing'
46
id 'info.solidsoft.pitest'
57
id 'io.github.cosmicsilence.scalafix'
68
}

yubico-util/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
plugins {
22
id 'java-library'
33
id 'scala'
4+
id 'maven-publish'
5+
id 'signing'
46
id 'io.github.cosmicsilence.scalafix'
57
}
68

0 commit comments

Comments
 (0)