IntelliJ IDEA のセットアップ
この記事では SpongeAPI と、 Maven や Gradle といったビルドシステム を用いたプラグイン開発のための IntelliJ IDEA の設定方法を述べます。
Gradle
プロジェクトの作成
IntelliJ IDEA を開きます。
Create New Project
をクリックします。ポップアップ中の
Gradle
を選択し、Next
をクリックします。Group ID, Artifact ID, Version を入力します。
Group ID は通常、 Java パッケージ名に対応すべきです。詳細は 主要なプラグインのクラス を参照してください。
Artifact ID は通常、
myplugin
のように、先に選択した plugin ID に対応すべきです。Version を入力します。
Next
を二回押して、プロジェクトに名前をつけて、Finish
をクリックします。
ビルドスクリプトの編集
ナビゲーターの
build.gradle
を開き、依存関係を追加します。Edit the build script according to the instructions at Gradle の設定.
IntelliJ ウィンドウの右にある Gradle タブ を開き、更新ボタンを押します。
Gradle のセットアップが完了しました! プラグインのコーディングを始められます。
プロジェクトのインポート
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 > Open
をクリックしますプロジェクトの
build.gradle
ファイルに移動します。OK をクリックします
Maven
プロジェクトの作成
IntelliJ IDEA を開きます。
Create New Project
をクリックします。ポップアップ中の
Maven
を選択し、Next
をクリックします。Group ID, Artifact ID, Version を入力します。
Group ID は通常、 Java パッケージ名に対応すべきです。詳細は 主要なプラグインのクラス を参照してください。
Artifact ID は通常、
myplugin
のように、先に選択した plugin ID に対応すべきです。Version を入力します。
次へ
をクリック。プロジェクト名を入力し、
Finish
をクリックします。
プロジェクト構成の編集
ナビゲーターの
pom.xml
を開きます。Edit the build configuration according to the instructions at Maven の設定.
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 > Open
をクリックしますプロジェクトの
pom.xml
ファイルに移動します。OK をクリックします
Git Integration
JetBrains は、 Git integration のドキュメントを提供しています:
https://www.jetbrains.com/help/idea/using-git-integration.html