-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [ANDR][Tooling] Assorted improvements * superfluous change to trigger gradle ci tests * Cleanup * undo
- Loading branch information
Showing
4 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,5 +44,10 @@ | |
<email>[email protected]</email> | ||
<url>https://github.com/murki</url> | ||
</developer> | ||
</developers> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:git://github.com/bitdriftlabs/capture-sdk.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]:bitdriftlabs/capture-sdk.git</developerConnection> | ||
<url>https://github.com/bitdriftlabs/capture-sdk</url> | ||
</scm> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ plugins { | |
// Publish | ||
alias(libs.plugins.dokka) // Must be applied here for publish plugin. | ||
alias(libs.plugins.maven.publish) | ||
signing | ||
|
||
id("dependency-license-config") | ||
} | ||
|
@@ -102,6 +103,11 @@ mavenPublishing { | |
url.set("https://github.com/murki") | ||
email.set("[email protected]") | ||
} | ||
scm { | ||
connection.set("scm:git:git://github.com/bitdriftlabs/capture-sdk.git") | ||
developerConnection.set("scm:git:ssh://[email protected]:bitdriftlabs/capture-sdk.git") | ||
url.set("https://github.com/bitdriftlabs/capture-sdk") | ||
} | ||
} | ||
} | ||
} | ||
|
@@ -113,3 +119,8 @@ publishing { | |
} | ||
} | ||
} | ||
|
||
// TODO(murki): Using this requires further setup in CI and local (e.g. signing entries in the local gradle.properties file) | ||
signing { | ||
sign(publishing.publications) | ||
} |