cleanup
[taxeditor.git] / project-setup-wire-locally.sh
1 #!/bin/bash
2
3 #
4 # TODO CDMLIB_ROOT is currently pinned to a
5 # specific workspace setup and should be parametrized
6 # or flexibilized an other way.
7 #
8 CDMLIB_ROOT=~/workspaces/cdm/cdmlib
9
10 CDM_PROJETCS=("cdmlib-cache" "cdmlib-commons" "cdmlib-model" "cdmlib-ext" "cdmlib-io" "cdmlib-persistence" "cdmlib-services")
11
12 rm -fr eu.etaxonomy.taxeditor.cdmlib/dev-linked-projects/*
13
14 for prj in "${CDM_PROJETCS[@]}"; do
15 ln -sf $CDMLIB_ROOT/$prj/target/classes eu.etaxonomy.taxeditor.cdmlib/dev-linked-projects/$prj-classes
16 done