Files
openide/platform/sqlite/Makefile
Vladimir Krivosheev 2b6c42bbb1 vcs log sqlite backend - rename native lib to avoid conflicts
GitOrigin-RevId: 242c92aef577c49598355a87d5597ee85642d2ea
2023-01-17 19:01:00 +00:00

22 lines
698 B
Makefile

.phony: archive-native install-native
archive-native:
rm -f target/sqlite-native.jar
cd target && zip -r sqlite-native.jar sqlite -i '*.jnilib' '*.so' '*.dll' '*.sha256'
install-native: archive-native
mvn install:install-file -DgroupId=org.sqlite \
-DartifactId=native \
-Dversion=3.40.0-11 \
-Dpackaging=jar \
-Dfile=target/sqlite-native.jar
deploy-native: archive-native
mvn deploy:deploy-file -DgroupId=org.sqlite \
-DartifactId=native \
-Dversion=3.40.0-11 \
-Dpackaging=jar \
-Dfile=target/sqlite-native.jar \
-DrepositoryId=space-intellij-dependencies \
-Durl=https://packages.jetbrains.team/maven/p/ij/intellij-dependencies