-
-
Save rnetonet/fa41b224f34bfd0a0ede59567e097460 to your computer and use it in GitHub Desktop.
Revisions
-
rnetonet revised this gist
Jan 8, 2025 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,4 @@ # executes mvn clean for all sub directories containing a pom.xml # find . -name "pom.xml" -exec mvn clean install package -U -f '{}' \; -
rnetonet revised this gist
Jan 7, 2025 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,4 @@ # executes mvn clean for all sub directories containing a pom.xml # find . -name "pom.xml" -execdir mvn clean install -f {} \; -
rnetonet revised this gist
Nov 19, 2024 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ Get-ChildItem -Directory | ForEach-Object { Set-Location $_.FullName mvn dependency:purge-local-repository Set-Location .. } -
rnetonet revised this gist
Nov 19, 2024 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ Get-ChildItem -Directory | ForEach-Object { Set-Location $_.FullName mvn -U clean install Set-Location .. } -
mkutz created this gist
Apr 18, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #!/usr/bin/env bash # # executes mvn clean for all sub directories containing a pom.xml # find . -name "pom.xml" -exec mvn clean -f '{}' \;