Required:
- Java 11
- Maven 3.5+
To build without executing tests: mvn clean package -Dmaven.test.skip=true
To build without executing tests:
- Click on "File" -> "Open", choose your project location.
- Open maven view by click "View" -> "Tool Windows" -> "Maven Projects".
- Choose root module "hugegraph: Distributed Graph Database", unfold the menu of "Lifecycle".
- Click the "Toggle 'Skip Tests' Mode" button which is located on the top navibar of "Maven Projects" window to skip tests.
- Double click "package" or "install" to build a project.
Could also refer Dev-In-IDEA for more details.
Note: this has only been tested on Eclipse Neon.2 Release (4.6.2) with m2e (1.7.0.20160603-1933) and m2e-wtp (1.3.1.20160831-1005) plugin.
To build without executing tests:
- Right-click on your project -> "Run As..." -> "Run Configurations..."
- On "Goals", populate with
install
- Select the options
Update Snapshots
andSkip Tests
- Before clicking "Run", make sure that Eclipse knows where
JAVA_HOME
is. In the same window, go to "Environment" tab and click "New". - Under "Name:", add
JAVA_HOME
- Under "Value:", add the path where
java
is located - Click "OK"
- Then click "Run"
To find the Java binary in your environment, run the appropriate command for your operating system:
- Linux/macOS:
which java
- Windows:
for %i in (java.exe) do @echo. %~$PATH:i