Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 17d9381eec25f0f40100c3745fee12076a80b576 (plain) (blame)
1
2
3
4
#!/bin/sh
for tp in *.targetplatform; do
    mvn -Dtarget.definition=${tp} validate && rm -rf ./workspace
done

Back to the top