Skip to content
This repository was archived by the owner on Feb 26, 2023. It is now read-only.

Commit 7915ba4

Browse files
Added settings to support signing artefacts for upload to bintray and maven
1 parent 94b5eb2 commit 7915ba4

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

build.gradle

+5-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ buildscript {
1414

1515
allprojects {
1616
group = 'com.thinkinglogic'
17-
version = '1.0.0'
17+
version = '1.0.1'
1818
}
19-
19+
/*
20+
* to publish:
21+
* gradle clean publish bintrayUpload
22+
*/
2023

2124
allprojects {
2225
apply plugin: "kotlin"

kotlin-builder-annotation/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ bintray {
7878
released = new Date()
7979
vcsTag = project.version
8080
attributes = ['kotlin-builder-annotation': 'com.thinkinglogic:com.thinkinglogic.builder:kotlin-builder-annotation']
81+
gpg {
82+
sign = true
83+
}
8184
}
8285
}
8386
}

kotlin-builder-processor/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ bintray {
8585
released = new Date()
8686
vcsTag = project.version
8787
attributes = ['kotlin-builder-processor': 'com.thinkinglogic:com.thinkinglogic.builder:kotlin-builder-processor']
88+
gpg {
89+
sign = true
90+
}
8891
}
8992
}
9093
}

0 commit comments

Comments
 (0)