aboutsummaryrefslogtreecommitdiff
path: root/run_core_generators.sh
blob: 0410247bd08413cf780e03814d14342486d93855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

# Runs all the code generators.
# If the node structure was changed, run_metamodel_generator.sh first!

pushd javaparser-core-generators

mvn clean package

popd

mvn clean install -DskipTests
if [ "$?" -ne 0 ]; then
    exit 1
fi