mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
22 lines
698 B
Makefile
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
|