-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add singing module * update publishing gradle tasks
- Loading branch information
1 parent
7e4ac8a
commit c00d9c1
Showing
3 changed files
with
36 additions
and
2 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 |
---|---|---|
|
@@ -37,15 +37,25 @@ To build or test RedPulsar, run the following command: | |
```bash | ||
git clone [email protected]:himadieievsv/redpulsar.git | ||
cd redpulsar | ||
|
||
# Code formatting | ||
./gradlew ktlintFormat | ||
|
||
# Run all tests | ||
docker-compose up -d | ||
./gradlew test | ||
|
||
# Run only unit tests | ||
./gradlew test -DexcludeTags="integration" | ||
# Build and publish to local maven repository | ||
./gradlew build -x test publishToMavenLocal | ||
|
||
# Build | ||
./gradlew build -x test | ||
|
||
# Publish to local maven repository | ||
./gradlew publishToMavenLocal \ | ||
-Psigning.secretKeyRingFile=... \ | ||
-Psigning.password=... \ | ||
-Psigning.keyId=... | ||
``` | ||
|
||
## Further development | ||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
signing.keyId=YourKeyId | ||
signing.password=YourPublicKeyPassword | ||
signing.secretKeyRingFile=PathToYourKeyRingFile | ||
|
||
ossrhUsername=your-jira-id | ||
ossrhPassword=your-jira-password |