3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

EclipseにGradleプロジェクトをインポートする

Last updated at Posted at 2021-01-15
  • 環境
    • Windows10 Pro バージョン1909
    • Eclipse IDE for Enterprise Java Developer Version: 2019-09 R (4.13.0)
    • プロジェクトのGradle 4.3
    • プロジェクトのjava version "1.8.0_251"

Gradleのバージョンを確認して使うEclipseのバージョンを決める

  1. インポートするプロジェクトのwrapper/gradle-wrapper.propertiesdistributionUrlでGradleのバージョンを確認する
  2. Eclipseの起動用JVMが、ななななんと関係することがあるので、「Gradleのバージョンに合ったJavaのバージョン」を起動用JVMに設定できるEclipseのバージョンを選択する
wrapper/gradle-wrapper.properties
# 今回はGradle4.3
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-bin.zip

Eclipseを設定する

  1. eclipse.iniの-vmにプロジェクトのGradleで使いたいJavaのバージョンを指定する(JAVA_HOMEに違うJavaが設定されたとき用)
  2. Eclipseを新規ワークスペースで起動する
  3. [Help] > [Eclipse Marketplace]で以下がインストールされていることを確認する
  4. [Preferences]で以下を設定する

プロジェクトをインポートする

  1. [Project Explorer] > [Import project] > [Gradle] > [Existing Gradle Project] > [Next]ボタン
  2. [Project root directory]にプロジェクトのディレクトリを指定
  3. [Next] > [Next]ボタン(ここあたりでエラーが出たらなんか設定が違う)
  4. [Finish]ボタンでインポートする
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?