사용자 지정 작업 정의
Groovy 또는 Kotlin DSL을 사용해 특정 빌드 단계를 자동화하는 Gradle 작업을 직접 작성합니다.
사용자 지정 작업 정의은(는) CoddyKit의 무료 Groovy & Gradle: JVM Automation and Build Engineering 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Groovy & Gradle: JVM Automation and Build Engineering 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Groovy & Gradle: JVM Automation and Build Engineering 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
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!
AI 튜터와 함께 Groovy을(를) 배우세요 — 무료
브라우저에서 실제 코드를 작성하고 실행하며, 24/7 AI 튜터로부터 즉각적인 도움을 받고, 웹이나 앱에서 중단한 부분부터 계속 학습하세요.
- 코스
- 12
- 레슨
- 48
자주 묻는 질문
“사용자 지정 작업 정의” 강의는 무료인가요?
네 — “사용자 지정 작업 정의” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Groovy & Gradle: JVM Automation and Build Engineering 강의 전체를 잠금 해제할 수 있습니다. Groovy & Gradle: JVM Automation and Build Engineering 강의에는 총 4개의 강의가 포함되어 있습니다.
“사용자 지정 작업 정의”에서 뭘 배우나요?
Groovy 또는 Kotlin DSL을 사용해 특정 빌드 단계를 자동화하는 Gradle 작업을 직접 작성합니다. 브라우저에서 직접 실행하는 실습 코드로 Groovy & Gradle: JVM Automation and Build Engineering을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Groovy & Gradle: JVM Automation and Build Engineering을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Groovy & Gradle: JVM Automation and Build Engineering은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.
“사용자 지정 작업 정의” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Groovy & Gradle: JVM Automation and Build Engineering 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Groovy & Gradle: JVM Automation and Build Engineering 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- 사용자 지정 작업 정의
- 작업 타입과 동작
- 작업 속성과 구성
- 증분 작업과 최신 상태 확인