#!/bin/bash
if [[ -f Trace/pom.xml ]]; then
mvn -f Trace/pom.xml clean install -DskipTests &
fi
if [[ -f JSONSerialiser/pom.xml ]]; then
mvn -f JSONSerialiser/pom.xml clean install -DskipTests &
fi
wait
if [[ -f ApplicationTracer/pom.xml ]]; then
mvn -f ApplicationTracer/pom.xml clean install -DskipTests &
fi
if [[ -f RequestsSimulator/pom.xml ]]; then
mvn -f RequestsSimulator/pom.xml clean install -DskipTests &
fi
if [[ -f Cache/pom.xml ]]; then
mvn -f Cache/pom.xml clean install -DskipTests &
fi
if [[ -f RemoteExecutor/pom.xml ]]; then
mvn -f RemoteExecutor/pom.xml clean install -DskipTests &
fi
if [[ -f java-callgraph/pom.xml ]]; then
mvn -f java-callgraph/pom.xml clean install -DskipTests &
fi
wait