-
Notifications
You must be signed in to change notification settings - Fork 663
Multi modules: separate Java library from native libs #1387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
fd57d27
multi modules
gotson 710c3d5
makefile adjustments
gotson f5dc368
jreleaser
gotson 7602bbb
rename bare project to jni, add pom descriptions
gotson 945160b
plugins
gotson 4381ff0
add workflow to bump sqlite version
gotson e1c89e4
update makefile following module renaming
gotson a85e2bb
adjust build native workflow
gotson 18f4b18
adjust ci
gotson 5dbfed3
move spotless to parent pom and update version
gotson 8eeb945
fix java version
gotson 3b7de99
bump minimum java from 11 to 17
gotson 3dce792
move maven enforcer to parent and bump minimum java version to 17
gotson c5d37ba
adjust makefile
gotson 4f44548
adjust makefile
gotson e7677da
fix multiple class loader test edge cases
gotson 8d6a7ca
try debug CI failing
gotson 1880772
try debug CI failing
gotson 13d038f
fix makefile
gotson 65ccf1d
fix makefile for codesign
gotson 0e34aeb
fix makefile for codesign
gotson 5bdcb8e
chore: update native libraries
github-actions[bot] d75e242
Revert "try debug CI failing"
gotson d9a513b
Revert "try debug CI failing"
gotson fa6916d
update docs
gotson c5e176f
fix pom packaging
gotson 0d965c2
use shell and tr for lowercase
gotson 9d49cec
move spotless plugin to dedicated profile
gotson b59bd25
fix pom deps
gotson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,38 @@ | ||
| name: Upgrade SQLite version | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| new_version: | ||
| description: 'New SQLite version (x.y.z)' | ||
| required: true | ||
| type: string | ||
|
|
||
| jobs: | ||
| version: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
|
|
||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'temurin' | ||
| java-version: '17' | ||
| java-package: jdk | ||
| cache: 'maven' | ||
|
|
||
| - name: Set SQLite version in VERSION | ||
| run: | | ||
| echo "version=${{ inputs.new_version }}" >> VERSION | ||
|
|
||
| - name: Update version in POM | ||
| run: | | ||
| mvn versions:set -DnewVersion=${{ inputs.new_version }}-SNAPSHOT -DgenerateBackupPoms=false | ||
|
|
||
| - run: git status | ||
|
|
||
| # - name: Commit and push | ||
| # uses: EndBug/add-and-commit@v9 | ||
| # with: | ||
| # message: 'feat(sqlite): upgrade to sqlite ${{ inputs.new_version }}' | ||
| # default_author: github_actions |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.