Eclipse Instellen

This article describes how to configure your Eclipse workspace for plugin development with SpongeAPI and a build system such as Maven or Gradle.

Notitie

A tutorial by Mumfrey showing the setup of a Sponge workspace in Eclipse, using the new features in Buildship and ForgeGradle, can be viewed here.

Gradle

Preparing Gradle

Notitie

Gradle is automatically included in Eclipse starting from the Neon release (June 22, 2016) and later. These steps are only required for earlier versions.

Je moet eerst de Gradle Integratie Plugin installeren voordat je Gradle kan gebruiken in Eclipse. Dit moet enkel gebeuren tijdens het aanmaken van je eerste project.

Tip

Normaal gezien heb je de optionele Spring modules die gedistribueerd worden bij deze plugin niet nodig, dus je kan deze uitvinken tijdens de installatie.

  • Open Eclipse.

  • Klik op Help > Eclipse Marketplace.

  • Zoek voor Gradle Integratie Plugin.

  • Installeer de Gradle Integratie Plugin.

Creating your project

  • Open Eclipse.

  • Klik op File > New > Other.

  • Selecteer Gradle > Gradle Project.

  • Klik op Next.

  • Vul de naam van je project in en klik op Finish.

Editing the build script

  • Open build.gradle in de navigator.

  • Edit the build script according to the instructions at Setting Up Gradle.

  • Right-click your project, and select Gradle > Refresh Gradle Project.

Importing your project

If you’ve already started with your project and want to import it again at a later point you need to import it instead of re-creating it inside your IDE:

  • Click File > Import

  • Select Gradle > Gradle Project

  • Navigate to the root folder of the project

  • Click Finish

Maven

Creating your project

  • Open Eclipse.

  • Klik op File > New > Other.

  • Selecteer Maven aan de linkerkant van de popup en selecteer Maven Project aan de rechterkant.

  • Klik op Next.

  • Selecteer Create a simple project, tenzij je een meer geavanceerde installatie nodig hebt.

  • Vul de Group ID, Artifact ID, Version, projectnaam en projectomschrijving in.

    • Your Group ID should usually correspond to your Java package name. See Hoofdklasse uw plugin for details.

    • Your Artifact ID should usually correspond to your plugin ID you chose earlier, e.g. myplugin.

    • Your Version is up to you. See Version Numbers for details.

  • Klik op Finish.

Tip

Eclipse opent vaak nieuwe projecten niet wanneer je ze aanmaakt. Indien dit gebeurt, probeer het Eclipse welkomscherm te sluiten; je project zou nu moeten openen.

Editing the project configuration

  • Open pom.xml in de navigator.

  • Edit the build configuration according to the instructions at Setting Up Maven.

  • Refresh your Maven project.

Importing your project

If you’ve already started with your project and want to import it again at a later point you need to import it instead of re-creating it inside your IDE:

  • Click File > Import

  • Select Maven > Existing Maven Projects

  • Navigate to the root folder of the project

  • Click Finish

Git Integratie

De Eclipse Foundation voorziet documentatie voor het gebruik van Eclipses EGit plugin:

https://www.eclipse.org/egit/documentation/