mirror of
https://github.com/tribufu/tribufu-java
synced 2026-05-06 14:57:27 +00:00
8 lines
297 B
PowerShell
8 lines
297 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
.\gradlew build
|
|
|
|
New-Item "build/libs" -ItemType Directory -Force
|
|
Remove-Item -Path "build/libs/*" -Force
|
|
Copy-Item -Path "./lib/build/libs/*.jar" -Destination "./build/libs" -Force
|
|
Copy-Item -Path "./vendor/MintakaJvm/lib/build/libs/*.jar" -Destination "./build/libs" -Force
|