-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·24 lines (18 loc) · 983 Bytes
/
build.sh
File metadata and controls
executable file
·24 lines (18 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
#*******************************************************************************
# Copyright (c) 2009, 2020 Xored Software Inc and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-v20.html
#
# Contributors:
# Xored Software Inc - initial API and implementation and/or initial documentation
#*******************************************************************************
export MAVEN_OPTS="-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=256m"
OPTIONS="-Ddash.batch=200 -Dtycho.localArtifacts=ignore $@"
mvn clean verify -f releng/mirroring/pom.xml $OPTIONS || exit 100
./build_nodeps.sh $OPTIONS clean verify || exit $?
./build_runner.sh $OPTIONS || exit $?
mvn clean install --file maven-plugin $OPTIONS || exit $?
mvn clean verify --file maven-plugin/its $OPTIONS || exit $?