翻訳と辞書
Words near each other
・ Gradišče pri Vipavi
・ Gradišče pri Vojniku
・ Gradišče pri Štjaku
・ Gradišče v Tuhinju
・ Gradišče, Grosuplje
・ Gradišče, Kozje
・ Gradišče, Slovenj Gradec
・ Gradišče, Tišina
・ Gradišče, Velike Lašče
・ Gradišče, Videm
・ Gradišče, Škofljica
・ Gradišče, Šmartno pri Litiji
・ Gradiște
・ Gradki
・ Gradl
Gradle
・ Gradlon
・ Gradnetzmeldeverfahren
・ Gradnik
・ Gradnitsa
・ Gradnitsa, Dobrich Province
・ Gradnitsa, Gabrovo Province
・ Gradnići
・ Gradnja
・ Gradnje, Krško
・ Gradnje, Sežana
・ Gradno
・ Gradnulica
・ Grado
・ Grado (parish)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Gradle : ウィキペディア英語版
Gradle

Gradle is an open source build automation system that builds upon the concepts of Apache Ant and Apache Maven and introduces a Groovy-based domain-specific language (DSL) instead of the XML form used by Apache Maven of declaring the project configuration. Gradle uses a directed acyclic graph ("DAG") to determine the order in which tasks can be run.
Gradle was designed for multi-project builds which can grow to be quite large, and supports incremental builds by intelligently determining which parts of the build tree are up-to-date, so that any task dependent upon those parts will not need to be re-executed.
The initial plugins are primarily focused around Java, Groovy and Scala development and deployment, but more languages and project workflows are on the roadmap.
== Example Java project ==
Consider the case where the Maven directory structure is used for Java sources and resources. These directories are: src/main/java, src/main/resources, src/test/java and src/test/resources.
build.gradle

apply plugin: 'java'

Running gradle build will result in

> gradle build
:compileJava
:processResources
:classes
:jar
:assemble
:compileTestJava
:processTestResources
:testClasses
:test
:check
:build
BUILD SUCCESSFUL

The Java plugin emulates many of the expected Maven lifecycles as tasks in the directed acyclic graph of dependencies for the inputs and outputs of each task. For this simple case, the build task depends upon the outputs of the check and assemble tasks. Likewise, check depends upon test, and assemble depends upon jar.
For projects that do not follow the Maven conventions, Gradle allows the directory structure to be configured. The following example would support a project that contains source files in src/java rather than the src/main/java convention enforced by Maven.
build.gradle

apply plugin: 'java'
sourceSets.main.java.srcDirs = ()


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Gradle」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.