-
Notifications
You must be signed in to change notification settings - Fork 11
How to setup and build the project
Sergey Tikhomirov edited this page Sep 28, 2018
·
4 revisions
Requirements:
- Java Development Kit 9
- Gradle. How to install
- IntelligIDEA v>=2018.2
Steps:
- fork the project
- clone the fork into local computer
- load the project via IntelligIDEA as Gradle project.
- define following settings
- setup following properties (any values) at
gradle.properties
:- REPO_USER_NAME=
- REPO_USER_PASSWORD=
How to build:
-
By IntelligIDEA
Build -> Clean Project
,Build -> Rebuild Project
-
By grable promt
-
gradle clean test
- to start suites of unit tests -
gradle clean build upload
- to start suites of unit tests, build modules and send them to maven repository -
gradle clean build -x test upload
- the same as above excluding the test starting -
gradle clean build upload aggregatedJavadocs
- the same as above + creates/aggregates javadoc sites in/../neptune.documentation/
-
gradle clean build -x test upload aggregatedJavadocs
- the same as above excluding the test starting
-