We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 477754a commit 3650df0Copy full SHA for 3650df0
installLibsLocally.ps1
@@ -17,14 +17,7 @@ if ($IsWindows) {
17
# Run the batch script (mvnBuild.bat)
18
& ".\mvnBuild.bat"
19
} else {
20
- # Extract and explicitly invoke the mvn command from mvnBuild.bat
21
- $mvnCommand = Get-Content "./mvnBuild.bat" | Where-Object { $_ -match '^mvn\s+' }
22
- if ($null -ne $mvnCommand) {
23
- # Execute the extracted mvn command explicitly as a single line
24
- bash -c "$mvnCommand"
25
- } else {
26
- Write-Error "No mvn command found in mvnBuild.bat."
27
- }
+ bash -c 'mvn clean install -U -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -Dgpg.skip -Dspotbugs.skip=true'
28
}
29
30
# Return to the parent directory before working on the second repository
0 commit comments