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
#!/bin/bash -e | |
# This script creates a parent pom for all listed modules, allowing you to open them up in IDEA | |
# in one go and have IDEA automatically link up dependencies | |
if [[ $1 == --help || $# < 2 ]]; then | |
echo "Usage: wksp.sh WORKSPACE_NAME MODULE_NAME..." | |
echo | |
echo "This command is meant to be run from the root directory for all projects" | |
exit 1 |