Gradle超簡単入門
Gradleは何ですか?
Gradleはオーペンソースの自動化システムビルドツールであり、プロジェクトの設定宣言のMavenが利用されているXMLではなく、Groovyという固用言語(DSL)を利用しています。
世の中に、主なシステムビルドツールはAnt、Maven、Gradleです。簡単に言えば、以下のように各ビルドツールの機能をまとめています。
Gradleプロジェクトの作成
筆者はIntellij IDEAを利用しているので、直接にIntellijからインストールを紹介されていただきます。
STEP1:
Intellijを開き、「Create New Project]をクリックしてください。
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()
}
Author And Source
この問題について(Gradle超簡単入門), 我々は、より多くの情報をここで見つけました https://qiita.com/Jenny1025/items/9450ec0c5923185bf3e7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .