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 characters
| #!/usr/bin/perl | |
| # Perl script to fast switch between maven settings. Applicable to other programs as well. | |
| # Expects an original file like settings.xml and reference files like settings.xml.alfa1 | |
| # and settings.xml.alfa2. These are in the same $m2Folder. When run gives user list of | |
| # postfixes of the original file to chose from (alfa1, alfa2). And that file will | |
| # overwrite the original settings.xml | |
| use warnings; | |
| use File::Copy; |
NewerOlder