Mendefinisikan Tugas Kustom
Tulis tugas Gradle Anda sendiri menggunakan DSL Groovy atau Kotlin untuk mengotomatiskan langkah pembangunan tertentu.
Mendefinisikan Tugas Kustom adalah pelajaran Groovy & Gradle: JVM Automation and Build Engineering gratis di CoddyKit. Ini adalah pelajaran 1 dari 4. Kamu bisa membaca pelajaran lengkapnya di bawah secara gratis — lalu praktikkan langsung di browser dengan editor kode bawaan dan tutor AI 24/7. Ini adalah bagian dari jalur belajar Groovy & Gradle: JVM Automation and Build Engineering, dan progresmu tersinkronisasi di web dan aplikasi CoddyKit. Kursus Groovy & Gradle: JVM Automation and Build Engineering mencakup 4 pelajaran total.
Bagian dari pelajaran ini belum diterjemahkan dan ditampilkan dalam bahasa Inggris.
Custom Tasks: Why & How?
Why define your own Gradle tasks? They let you automate unique steps not covered by standard plugins. Think of custom tasks as recipes for specific build actions.
This lesson will show you how to craft them to extend Gradle's capabilities!
Your First Custom Task
The simplest way to create a custom task is directly in your build.gradle file. Use the task keyword followed by your task's name.
Let's create a task named helloCustom:
// build.gradle
task helloCustom {
doLast {
println 'Hello from a custom task!'
}
}Task Actions: doLast & doFirst
Tasks can have multiple actions. You can define them using doFirst and doLast blocks. These blocks specify code to run before or after the task's main actions.
// build.gradle
task orderedActions {
doFirst {
println 'This runs first!'
}
doLast {
println 'This runs last!'
}
doLast { // Can have multiple doLast/doFirst
println 'This runs after the previous doLast!'
}
}Beyond Inline: Custom Task Classes
For more complex logic or reusability across projects, you'll want to define a custom task as a class. This allows for better organization, testing, and property management.
- Encapsulation: Keep task logic in one place.
- Reusability: Share tasks between different projects.
- Configuration: Define properties for customization.
Writing a Custom Task Class
Custom task classes extend Gradle's DefaultTask. You define the task's actions within a method, often annotated with @TaskAction.
Create a file named src/main/groovy/com/coddykit/tasks/MyGreetingTask.groovy:
package com.coddykit.tasks
import org.gradle.api.DefaultTask
import org.gradle.api.tasks.TaskAction
class MyGreetingTask extends DefaultTask {
@TaskAction
def greet() {
println "Hello from MyGreetingTask!"
}
}Using Your Custom Task Class
To use your custom task class, you need to tell Gradle where to find it and then register an instance of it. First, add the Groovy plugin to compile your task class.
Update your build.gradle:
// build.gradle
plugins {
id 'groovy' // To compile Groovy task classes
}
repositories {
mavenCentral()
}
dependencies {
// Required for DefaultTask
implementation gradleApi()
// If your task uses Groovy
implementation 'org.codehaus.groovy:groovy-all:3.0.10'
}
// Register our custom task
tasks.register('myGreeting', com.coddykit.tasks.MyGreetingTask)Executing the Class-Based Task
Now that your custom task class is defined and registered in build.gradle, you can execute it just like any other Gradle task from your terminal.
Run the command:
gradle myGreetingTask Types vs. Definitions
It's important to distinguish between defining a task type (the class) and defining a task instance (registering it).
- Task Type: The
MyGreetingTaskclass itself, which extendsDefaultTask. It defines what the task can do. - Task Definition:
tasks.register('myGreeting', MyGreetingTask). This creates a specific task named 'myGreeting' of that type.
Custom Task Quiz
You've learned how to create custom tasks. Let's test your understanding!
Defining Custom Tasks Recap
Great job! You've learned how to define custom Gradle tasks:
- Inline Tasks: Using
task name { doLast { ... } }for simple, script-local actions. - Task Actions: Controlling execution order with
doFirstanddoLast. - Custom Task Classes: Extending
DefaultTaskfor reusable, organized, and configurable task logic. - Registering Tasks: Using
tasks.register()to create instances of your custom task classes.
Next, we'll dive deeper into task types and how to configure properties for more dynamic tasks!
Pertanyaan yang Sering Diajukan
Apakah pelajaran “Mendefinisikan Tugas Kustom” gratis?
Ya — teks lengkap “Mendefinisikan Tugas Kustom” gratis dibaca di sini di web. Untuk praktiknya secara interaktif (editor kode bawaan dan tutor AI 24/7) dan buka sisa kursus Groovy & Gradle: JVM Automation and Build Engineering, upgrade ke CoddyKit PRO. Kursus Groovy & Gradle: JVM Automation and Build Engineering mencakup 4 pelajaran total.
Apa yang akan aku pelajari di “Mendefinisikan Tugas Kustom”?
Tulis tugas Gradle Anda sendiri menggunakan DSL Groovy atau Kotlin untuk mengotomatiskan langkah pembangunan tertentu. Kamu berlatih Groovy & Gradle: JVM Automation and Build Engineering dengan kode praktik yang langsung kamu jalankan di browser, dan tutor AI 24/7 menjawab pertanyaanmu saat kamu mengerjakan pelajaran ini.
Apakah aku perlu pengalaman untuk memulai Groovy & Gradle: JVM Automation and Build Engineering?
Tidak diperlukan pengalaman sebelumnya. Groovy & Gradle: JVM Automation and Build Engineering di CoddyKit dirancang untuk pemula hingga pelajar tingkat lanjut, jadi kamu bisa memulai di sini atau dari awal dan belajar sesuai kecepatan kamu sendiri. Ini adalah pelajaran 1 dari 4.
Berapa lama pelajaran “Mendefinisikan Tugas Kustom” memakan waktu?
Sebagian besar pelajaran CoddyKit memakan waktu sekitar 5–10 menit. Setiap pelajaran ringkas dan interaktif, jadi kamu membuat kemajuan stabil dan melanjutkan dari tempat kamu tinggalkan di web dan aplikasi.
Bisakah aku menulis dan menjalankan kode dalam pelajaran Groovy & Gradle: JVM Automation and Build Engineering ini?
Ya. Setiap pelajaran Groovy & Gradle: JVM Automation and Build Engineering menyertakan editor kode bawaan, jadi kamu menulis dan menjalankan kode nyata langsung di browser dan mendapatkan umpan balik AI instan — tidak diperlukan penyiapan lokal.
Semua pelajaran dalam kursus ini
- Mendefinisikan Tugas Kustom
- Tipe & Tindakan Tugas
- Properti & Konfigurasi Tugas
- Tugas Inkremental & Pemeriksaan Kemutakhiran