forked from ElektraInitiative/libelektra
-
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.
ElektraInitiative#3713 WIP jna binding gradle build cmake integration
- Loading branch information
Michael Tucek
committed
Mar 29, 2021
1 parent
5ef5ff7
commit 97e66d1
Showing
8 changed files
with
154 additions
and
98 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
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
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,3 @@ | ||
test { | ||
@GRADLE_TEST_EXCLUDES@ | ||
} |
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
// set secrets used for maven central publishing | ||
project.sonartypeUsername='YOUR_SONATYPE_USER_NAME' | ||
project.sonartypePassword='YOUR_SONATYPE_USER_PASSWORD' | ||
project.signingKeyId='KEY_ID' | ||
// set secrets used for maven central publishing (sonatype account credentials) | ||
project.sonatypeUsername='YOUR_SONATYPE_USER_NAME' | ||
project.sonatypePassword='YOUR_SONATYPE_USER_PASSWORD' | ||
|
||
// set passphrase protected signing key | ||
// you can use the following command for expoprting the secret key: gpg --armor --export-secret-keys C1E5DC2707235980 | awk '{print}' ORS='\\n' >> secret-settings.gradle | ||
project.signingPassword='KEY_PASSWORD' | ||
project.signingSecretKeyRingFile='/PATH/TO/SECRET/RING/FILE' | ||
project.signingSecretKey='ASCII_ARMORED_PGP_SECRET_KEY' |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
// override artifact version | ||
rootProject.artifactVersion = '@KDB_VERSION@' | ||
allprojects { | ||
version = '@KDB_VERSION@' | ||
} |