Created
December 26, 2013 20:41
-
-
Save vanpeerdevelopment/8138468 to your computer and use it in GitHub Desktop.
environment.bat file use in the setup of the development environment.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
pushd %~dp0 | |
pushd .. | |
SET PROJECT_HOME=%CD% | |
popd | |
popd | |
SET JAVA_HOME=%PROJECT_HOME%\Java | |
SET M2_HOME=%PROJECT_HOME%\Maven | |
SET M2_LOCAL_REPO=%PROJECT_HOME%\Maven-Repository | |
SET ECLIPSE_HOME=%PROJECT_HOME%\Eclipse | |
SET ECLIPSE_WORKSPACE=%PROJECT_HOME%\Eclipse-Workspace | |
SET PATH=%JAVA_HOME%\bin;%M2_HOME%\bin;%PATH% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment