Project

General

Profile

Actions

Building » History » Revision 6

« Previous | Revision 6/16 (diff) | Next »
Sergey Smolov, 03/05/2019 03:49 PM


Building

For Retrascope building and JUnit tests running we use Gradle. Please install it first (we use Gradle 4.10.3 in the wrapper script, by the way).

Building and running Retrascope from command line

To compile main classes run:

gradle classes

To compile testClasses run:

gradle testClasses

To run all unit tests run:

gradle test

To list all Gradle commands run:

gradle tasks

Building and running Retrascope from Eclipse IDE

  1. Install Buildship Gradle integration plugin for Eclipse IDE.
  2. Create init.gradle file in the $HOME/.gradle directory and write the following to it:
    allprojects
    {
      apply plugin: 'eclipse'
    
      it.eclipse
      {
        classpath.downloadJavadoc = true
      }
    }
    
  3. Import Retrascope sources into Eclipse workspace:
    • Use the menu item "File/Import...".
    • Choose "Gradle/Gradle Project".
    • Select the "<retrascope>/trunk/retrascope" 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.

Updated by Sergey Smolov about 5 years ago · 6 revisions