Skip to content

Instantly share code, notes, and snippets.

@davidmankin
davidmankin / wksp.sh
Last active April 29, 2016 19:43 — forked from mrdon/wksp.sh
#!/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