Project

General

Profile

« Previous | Next » 

Revision e4e551bd

Added by Andreas Kohlbecker about 7 years ago

adding script for easier project setup

View differences:

setup-project.sh
1
#!/bin/bash
2

  
3
echo -n "Use the local repo? [y,n]"
4
read choice
5

  
6
if [ "$choice" == "y" ]; then
7
  mvn_profile='-P local-repository'
8
fi
9

  
10
mvn clean install -DskipTests
11
mvn $mvn_profile  -Dlocalrepo=~/.m2/repository validate -pl eu.etaxonomy.taxeditor.cdmlib,eu.etaxonomy.taxeditor.molecular.lib

Also available in: Unified diff