Skip to content

Latest commit

 

History

History
85 lines (53 loc) · 7.63 KB

SettingUpTheIDE.md

File metadata and controls

85 lines (53 loc) · 7.63 KB

Setting up your IDE

In this tutorial we will explain how to set up your development environment.

Installing the Java Development Kit

First of all, the Java Development Kit (a.k.a. the JDK) needs to be installed. PowerMatcher is developed in Java version 1.7, so at least version 1.7 of the JDK needs to be present. At the moment we would not recommend using Java 8.

To check if you have installed the JDK you can execute the command javac -version on the command line. Windows users can access the command line through Start menu, press Run, type cmd and click the OK button. If the JDK is installed you should see the version number. If the JDK is not installed you should get a warning indicating that the command could not be found.

Windows and Mac users can download the JDK from http://www.oracle.com/technetwork/java/javase/downloads/index.html. Linux users can install Java through their package manager. OpenJDK also works fine. For example, Ubuntu users can install the JDK with the following commands:

sudo apt-get update
sudo apt-get install openjdk-7-jdk

Installing Eclipse

The preferred IDE for developing PowerMatcher is Eclipse, currently at version Luna. PowerMatcher heavily uses bnd for developing OSGi-bundles, and Eclipse has an excellent plug-in for bnd.

The latest version of Eclipse can be downloaded from http://www.eclipse.org/downloads/. The Standard Eclipse distribution or the Eclipse IDE for Java Developers version is preferred. Be careful to select the right version for your platform. Eclipse is provided as a zip archive. It doesn't have an installer. Just extract Eclipse to a location that is convenient for you.

For more information see http://www.eclipse.org "Eclipse website".

Installing Git

There are several ways can use Git. You could use the GitHub Desktop Client (Windows or Mac OS X), Git from command line (Git Bash) or the Eclipse EGit plug-in. In this tutorial we will assume you use Git Bash. You can download it for your platform on http://git-scm.com/downloads (or use the package manager for your Operating System).

For more details on using Git we recommend reading the Git Pro book. You can read it online for free.

Cloning the example repository

In this guide we will use the PowerMatcher repository and checkout the development branch. This repository contains the api and core bundles, needed to run PowerMatcher and one bundle with examples. You can find the repository on GitHub.

First of all, there are two ways of using the Git repository. If you only want to fiddle around with the examples, you can just check out the repository with HTTPS. This way you don't have to create a Github account. Changes you make to the code will only stay on your machine.

You can also decide to fork the repository. This way you make a private copy of the repository on Github. You can push your changes to Github and share them with other users. This requires you to create a Github account, upload your SSH keys, fork the repository and checking out the repository over SSH. For this tutorial it doesn't really matter which method you choose.

On the right side of the repository page you can find the clone URL. If you don't have a Github account, this should be https://github.com/flexiblepower/PowerMatcher.git. Now we have to open up Git Bash and go the directory where you want your source code. Let's assume you have created this directory at C:\Code. Since Bash is designed for Linux, you can use forward slashes instead of back slashes and use /c/ instead of C:\. You can change the directory with the cd (change directory) command. In order to go to the right directory you have to type in the following command and press enter:

cd /c/Code/

Next, we'll clone the Git repository into this directory and check out the development branch. After the git clone command, Git will have created a directory called PowerMatcher inside the C:\Code directory with the PowerMatcher source code. Next, We move into this directory using cd and then finally checkout the development branch using the git checkout command.

git clone https://github.com/flexiblepower/PowerMatcher.git
cd PowerMatcher
git checkout development

In the PowerMatcher project we use git submodules to share some files with several repositories. In order to be able to use these files you have to execute two commands for initializing the submodule from within the repository directory:

git submodule init
git submodule update

It might take some time to download these additional files. When these task are done you should also have a not-empty gradle directory in the cnf directory in your repository.

Starting Eclipse

Now it is time to start Eclipse. The first thing Eclipse asks is the location of your workspace. For PowerMatcher, each repository is also a workspace. So select the directory you just checked out (C:\Code\PowerMatcher).

When you start Eclipse for the first time it will show you the Welcome page. You can close it.

Installing Bndtools

The Eclipse plugin for bnd, called Bndtools, can be obtained from the Eclipse Marketplace. In Eclipse, go to Help and then to Eclipse Marketplace.... Search for Bndtools and click the Install button. During installation you will get a warning complaining about unsigned content. You may ignore that warning. After installation, restart Eclipse.

For more information see http://bndtools.org. There is also a general tutorial available at http://bndtools.org/tutorial.html.

Importing the formatting xml file

As mentioned in the Coding Conventions section, PowerMatcher has coding conventions. Since we are using the eclipse IDE, we will use the eclipse formatter.

Go to Window -> Preferences. Then, on the left, open Java -> Code Style -> Formatter. Click on import and browse to the location of your PowerMatcher repostitory, which is C:/Code/PowerMatcher in this tutorial. Finally, click apply.

import_xml

Importing the projects

The repository you checked out already contains some projects. We have to tell Eclipse to search for those repositories first. You can do this by going to File and then Import. Select Existing Projects into Workspace from the General directory and click the Next button.

Click on the Browse button on top of the screen. It will automatically go to your workspace directory. Click OK to select your workspace directory. Select all the projects and click Finish. Eclipse will add the projects to the Package explorer on the left of the screen.

Finally, we have to select the Bndtools perspective. A perspective is a configuration of the Eclipse user interface which is set up for a specific task. You can select a perspective by clicking Window, Open perspective and then Other.... Double click on Bndtools to open the Bndtools perspective. You can close the welcome window of Eclipse, and tick the box not to show again.

Next

You're all set to start developing! Be sure to check out OSGi, Bndtools and the Felix Web Console and Coding Conventions before developing.