1
2

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 5 years have passed since last update.

IntelliJの「Create separate module per source set」とは?

Posted at

GradleプロジェクトをIntelliJにインポートするときに選べる「Create separate module per source set」の設定とは何か?

Import_Project_from_Gradle.png

デフォルトは「Create separate module per source set」にチェックが入った状態。

この設定がどういうふうに働くか確認してみた。

インポートするプロジェクトの構成

.
├── build.gradle.kts
├── gradle
│   └── wrapper
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── settings.gradle.kts
└── src
    ├── main
    │   ├── kotlin
    │   │   └── io
    │   │       └── suin
    │   │           └── hellogradle
    │   │               └── App.kt
    │   └── resources
    └── test
        ├── kotlin
        │   └── io
        │       └── suin
        │           └── hellogradle
        │               └── AppTest.kt
        └── resources

チェックを入れたままインポートしたとき

srcとtestが別モジュールになる。

hellogradle___Volumes_dev_hellogradle__-_____src_main_kotlin_io_suin_hellogradle_App_kt__hello-gradle_main_.png

srcとtestで依存するライブラリは別になる。

Project_Structure.png

チェックを外してインポートしたとき

srcとtestが同じモジュールになる。

hellogradle___Volumes_dev_hellogradle__-_____src_main_kotlin_io_suin_hellogradle_App_kt__hello-gradle_.png

依存するライブラリも共通になる。

Project_Structure.png

どのようなメリット・デメリットがあるか?

調べたけど正直わからない。だれか教えて。

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?