Building » History » Revision 5
« Previous |
Revision 5/7
(diff)
| Next »
Sergey Smolov, 01/22/2020 04:37 PM
Building¶
- Table of contents
- Building
Prerequisites¶
To build the Fortress library from sources, following components must be installed:- Git
- Java Development Kit (JDK) 1.11 or higher (use AdoptOpenJDK for Windows and openjdk-11-jdk for Ubuntu Linux based OS)
For project building we use Gradle system.
You can either install it, or use wrapper scripts (we use Gradle 4.10.3 in scripts).
Two Gradle wrapper scripts are included in the project repository: one for Linux-based OS (gradlew), another for Windows OS (gradlew.bat). To make the guide uniform, a "gradle" acronym will be used in the following examples.
Access to Nexus¶
For some cases an access to ISP RAS Nexus local repository server may be required via Fortress building. Ask your ISP RAS colleagues for login and password and store them either in _REPO_USER and _REPO_PASSWORD environment variables, or in non-versioned by Git gradle-local.properties file of the following format:
repoUser=<write your login here> repoPassword=<write your password here>
Get the project source code¶
Clone the project's Git repository
git clone --recursive https://forge.ispras.ru/git/solver-api.git fortress
cd fortress
Building from command line¶
To list all Gradle commands run:
gradle tasks
To compile both main and test classes run:
gradle assemble
To run all unit tests run:
gradle test
Building from Eclipse IDE¶
- Install Buildship Gradle integration plugin for Eclipse IDE (if Gradle support has not provided by the IDE already).
- Create
init.gradle
file in the $HOME/.gradle directory and write the following to it:allprojects { apply plugin: 'eclipse' it.eclipse { classpath.downloadJavadoc = true } }
- Import Fortress sources into Eclipse workspace:
- Use the menu item "File/Import...".
- Choose "Gradle/Gradle Project".
- Select the "fortress" directory as the root directory, press "Next".
- Select the "Gradle wrapper (recommended)" import option.
- Press the "Finish" button: the project will be opened in the Eclipse IDE.
Building from IntelliJ IDEA¶
- From Welcome menu select "Import project".
- Select "fortress" directory, then press "OK".
- From "Import project" menu select "Import project from external model" -> Gradle, then press "Finish".
Updated by Sergey Smolov almost 5 years ago · 7 revisions