ref #8146 move term type to top in details view
[taxeditor.git] / setup-project.sh
index 40b2d1d8ef0b662338697ed4ff7f30be23b1bec1..66bf3b3eab860acf500a0b944304ac6b5d34c79e 100755 (executable)
@@ -1,11 +1,21 @@
 #!/bin/bash
 
-echo -n "Use the local repo? [y,n]"
+echo -n "Clear eclipse project? [y,N]"
+read choice
+
+if [ "$choice" == "y" ]; then
+       find . -type f \( -name ".classpath" -o -name "*.project" \) -prune -exec rm -f {} \;
+       find . -type d -name ".settings" -prune -exec rm -rf {} \;
+fi
+
+echo -n "Use the local repo? [y,N]"
 read choice
 
 if [ "$choice" == "y" ]; then
   mvn_profile='-P local-repository'
 fi
 
+# cp -f eu.etaxonomy.taxeditor.cdmlib/.classpath.template eu.etaxonomy.taxeditor.cdmlib/.classpath
+
 mvn clean install -DskipTests
 mvn $mvn_profile  -Dlocalrepo=~/.m2/repository validate -pl eu.etaxonomy.taxeditor.cdmlib,eu.etaxonomy.taxeditor.molecular.lib