-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DO-1982: fix maven publication errors (#79)
* add javadocs * add missing bits to the maven publication * generate javadocs and sources
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
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
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 |
---|---|---|
|
@@ -19,6 +19,8 @@ java { | |
toolchain { | ||
languageVersion.set(JavaLanguageVersion.of(8)) | ||
} | ||
withJavadocJar() | ||
withSourcesJar() | ||
} | ||
|
||
publishing { | ||
|
@@ -37,6 +39,21 @@ publishing { | |
|
||
from(components["java"]) | ||
pom { | ||
name = "Radix Engine Toolkit" | ||
description = "The Radix Engine Toolkit is a library that exposes a set of functions to help clients written in kotlin to compile and decompile transactions, perform SBOR encoding and decoding, derive virtual account and virtual badge addresses, and other functionalities" | ||
url = "https://github.com/radixdlt/radix-engine-toolkit" | ||
developers { | ||
developer { | ||
id = "0xOmarA" | ||
name = "Omar Abdulla" | ||
email = "[email protected]" | ||
} | ||
} | ||
scm { | ||
connection = "scm:git:git://github.com:radixdlt/radix-engine-toolkit.git" | ||
developerConnection = "scm:git:ssh://github.com:radixdlt/radix-engine-toolkit.git" | ||
url = "https://github.com/radixdlt/radix-engine-toolkit.git" | ||
} | ||
licenses { | ||
license { | ||
name = "Apache License, Version 2.0" | ||
|