mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
23 lines
738 B
Makefile
23 lines
738 B
Makefile
VERSION := 3.42.0-jb.1
|
|
|
|
.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=$(VERSION) \
|
|
-Dpackaging=jar \
|
|
-Dfile=target/sqlite-native.jar
|
|
|
|
deploy-native: archive-native install-native
|
|
mvn deploy:deploy-file -DgroupId=org.sqlite \
|
|
-DartifactId=native \
|
|
-Dversion=$(VERSION) \
|
|
-Dpackaging=jar \
|
|
-Dfile=target/sqlite-native.jar \
|
|
-DrepositoryId=space-intellij-dependencies \
|
|
-Durl=https://packages.jetbrains.team/maven/p/ij/intellij-dependencies
|