Files
openide/platform/sqlite/Makefile
Vladimir Krivosheev 462fada0a0 [profiler] Move async-profiler dependencies to lib
GitOrigin-RevId: d1e5572f4f8a3b1cfa23ada96940e816aee4eafe
2023-06-22 12:44:24 +00:00

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