We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 745d4f0 commit 8243a12Copy full SHA for 8243a12
2 files changed
.gitignore
@@ -2,6 +2,7 @@
2
target/
3
build/
4
*.dll
5
+!src/main/resources/native/*.dll
6
*.obj
7
*.exp
8
*.lib
run-demo.bat
@@ -4,8 +4,10 @@ cd /d "%~dp0"
echo [FastFileIndex] Running Demo (via JitPack)...
echo 🚀 Running Demo...
cd examples\Demo
-call mvn -U compile exec:java -Dexec.mainClass=fastfileindex.Demo -q
+set "FASTFILEINDEX_MAVEN_REPO=%TEMP%\FastFileIndex-jitpack-m2"
+call mvn -U -Dmaven.repo.local="%FASTFILEINDEX_MAVEN_REPO%" compile exec:java -Dexec.mainClass=fastfileindex.Demo -q
9
if %ERRORLEVEL% NEQ 0 ( echo ❌ Demo failed. & pause & exit /b %ERRORLEVEL% )
10
11
+echo Using local Maven repository: %FASTFILEINDEX_MAVEN_REPO%
12
cd ..\..
13
pause
0 commit comments