This is an old revision of the document!
Table of Contents
Developer Guide
Welcome to this developer guide!
Developing on the GroIMP source code only require a java compiler. Additionally GroIMP support two development setup: Maven and Eclipse.
Get the source code
The first step to start developing on the code is to get it. The code is entirely open source and available on https://gitlab.com/grogra/.
The source code is split between the “core” at https://gitlab.com/grogra/groimp and the plugins at https://gitlab.com/grogra/groimp-plugin. It is possible to work separately on the core and the plugins as each are compilable by themselves.
(Optional) Forking the repository
Go to https://gitlab.com/grogra/groimp in your internet browser.
Click on the Fork button of the repository.
Select your own gitlab namespace and optionally an other project name (not recommended).
Change or reuse the project slug and description.
Click on Fork project.
(Optional) Mirroring the repository
In an internet browser, go to your own repository that forks the official one.
On the side bar, click on Settings > Repository.
Expand the category `Mirroring repositories`.
Insert the URL of the official repository: https://gitlab.com/grogra/groimp
Click on Mirror repository
Note: the two previous steps are optional for users, but highly recommended if you plan on contributing to the code.
Cloning the repository
From GitLab
This method do not require any Gitlab account.
It is possible to simply download the directory of source code from GitLab on the main page https://gitlab.com/grogra/groimp. There is a download arrow button right next to the _clone_ button.
You can then download the whole repository as any archive format you like.
Once it is downloaded, extract the archive to the directory where you want to setup your eclipse workspace.
You still need to import the repository in Eclipse. See two section bellow.
From a bash command
You can clone a repository from GitLab with the command line:
git clone https://gitlab.com/grogra/groimp.git
This will create a directory named groimp and download all the remote content in it.
You still need to import the repository in Eclipse. See the section bellow.
Import the repository in Eclipse
You have the repository with GroIMP source code on your local device.
In Eclipse, click on File > Import…
Open the category `Maven`.
Select `Existing Maven Projects`.
Set the Root Directory as the groimp repository you downloaded.
All GroIMP plugins should appear in the projects list.
Click on `Finish`.
Maven
Eclipse
See the guide on how to setup your Eclipse environment here.