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.

Gradle超簡単入門

Last updated at Posted at 2020-02-09

Gradleは何ですか?

スクリーンショット 2020-02-09 17.54.13.png

Gradleはオーペンソースの自動化システムビルドツールであり、プロジェクトの設定宣言のMavenが利用されているXMLではなく、Groovyという固用言語(DSL)を利用しています。
世の中に、主なシステムビルドツールはAnt、Maven、Gradleです。簡単に言えば、以下のように各ビルドツールの機能をまとめています。
スクリーンショット 2020-02-09 22.15.52.png

Gradleプロジェクトの作成

筆者はIntellij IDEAを利用しているので、直接にIntellijからインストールを紹介されていただきます。

STEP1:
Intellijを開き、「Create New Project]をクリックしてください。
スクリーンショット 2020-02-09 15.25.57.png

STEP2:
Gradleプロジェクトを作成します。
スクリーンショット 2020-02-09 15.26.08.png
スクリーンショット 2020-02-09 15.26.35.png

STEP3:
プロジェクトを作成しました。
スクリーンショット 2020-02-09 15.27.01.png

Groovyの紹介

Groovyに興味があるの方は以下の文章をご参考ください。
https://qiita.com/Jenny1025/items/b27b8a90605a7b8e62b0

build.gradleについて

1.まず、pluginの定義です。


plugins {
    id 'java'
    id 'application'
}

2.次は依存の紹介です。

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
}

3.次に、リポジトリの定義です。

repositories {
    mavenCentral()
}
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?