forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.bat
55 lines (46 loc) · 1.7 KB
/
build.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@echo off
REM ======================================================================
REM
REM A build script
REM
REM At present this script does nothing else than pass the arguments by to
REM mvnw and you are encouraged to use mvnw (a.k.a. Maven Wrapper)
REM directly.
REM
REM Note that in the past, this script took the following responsibilities
REM that are now handled by mvnw or Maven itself:
REM
REM * Download and install a specific version of Maven
REM * Set Maven options via MAVEN_OPTS environment variable - these can
REM now be set in .mvn/jvm.config and .mvn/maven.config
REM
REM ======================================================================
REM
REM Authors:
REM Jason Dillon <[email protected]>
REM Sacha Labourey <[email protected]>
REM
REM ******************************************************
REM Ignore the MAVEN_HOME variable: we want to use *our*
REM Maven version and associated JARs.
REM ******************************************************
REM Ignore the users classpath, cause it might mess
REM things up
REM ******************************************************
SETLOCAL
set CLASSPATH=
set M2_HOME=
set MAVEN_HOME=
REM MAVEN_OPTS MAVEN_OPTS now live in .mvn/jvm.config and .mvn/maven.config
REM set MAVEN_OPTS=%MAVEN_OPTS% -Xmx768M
set DIRNAME=%~p0
set MVN=%DIRNAME%\mvnw.cmd
set GOAL=%1
if "%GOAL%"=="" set GOAL=install
REM WFLY-8175 requires that we keep installing Maven under the tools directory
REM the current project, at least when mvnw is invoked from build and integration-tests
REM scripts
set GOAL=-Dmaven.user.home=%DIRNAME%\tools %GOAL%
echo Calling "%MVN%" %GOAL% %2 %3 %4 %5 %6 %7
call "%MVN%" %GOAL% %2 %3 %4 %5 %6 %7
if "%NOPAUSE%" == "" pause