Eclipse のセットアップ

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

注釈

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

Gradle を準備する

注釈

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

Eclipse で Gradle を使用する前に、 Gradle Integration Plugin をインストールする必要があります。これは最初にプロジェクトを作成する時にのみ必要です。

ちなみに

通常、このプラグインは Spring モジュールを必要としないため、インストール中にオフにすることができます。

  • Eclipse を開く

  • ヘルプ > Eclipse マーケットプレース をクリック。

  • Gradle Integration Plugin で検索。

  • Gradle Integration Plugin をインストール。

プロジェクトの作成

  • Eclipse を開く

  • ファイル > 新規 > その他 をクリック。

  • Gradle > Gradle Project を選択。

  • 次へ をクリック。

  • プロジェクト名を入力し、完了 をクリック。

ビルドスクリプトの編集

  • ナビゲーターの build.gradle を開きます。

  • Edit the build script according to the instructions at Gradle の設定.

  • Right-click your project, and select Gradle > Refresh Gradle 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:

  • File > Import をクリックします

  • Gradle > Gradle Project を選択します。

  • Navigate to the root folder of the project

  • Click Finish

Maven

プロジェクトの作成

  • Eclipse を開く

  • ファイル > 新規 > その他 をクリック。

  • ポップアップ中の左側で Maven を選択し、右側で Maven プロジェクト を選択します。

  • 次へ をクリック。

  • 高度なセットアップを必要としない限り、 シンプルなプロジェクトの作成 を選択します。

  • Group ID, Artifact ID, Version, プロジェクト名, プロジェクトの説明を入力します。

    • Group ID は通常、 Java パッケージ名に対応すべきです。詳細は 主要なプラグインのクラス を参照してください。

    • Artifact ID は通常、myplugin のように、先に選択した plugin ID に対応すべきです。

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

  • 完了 をクリック。

ちなみに

Eclipse は、プロジェクトを作った後に、プロジェクトが開かないことがあります。もしそうなった場合は、Eclipse の Welcome スクリーンを閉じてみてください。その後ろにプロジェクトが開いていることがあります。

プロジェクト構成の編集

  • ナビゲーターの pom.xml を開きます。

  • Edit the build configuration according to the instructions at Maven の設定.

  • Maven プロジェクトを更新します。

プロジェクトのインポート

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:

  • File > Import をクリックします

  • Select Maven > Existing Maven Projects

  • Navigate to the root folder of the project

  • Click Finish

Git Integration

Eclipse Foundation は Eclipse の EGit プラグインのドキュメントを提供しています:

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