Project

General

Profile

Download (519 Bytes) Statistics
| Branch: | Tag: | Revision:
1 ffcfac39 Andreas Kohlbecker
#!/bin/bash
2
3 94c9a8c8 Andreas Kohlbecker
#
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 ffcfac39 Andreas Kohlbecker
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