-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add summaries and groups to gradle tasks
Fixes and closes #188 by adding task names and groups to major Pkl Gradle Plugin tasks Signed-off-by: Sam Gammon <[email protected]>
- Loading branch information
Showing
3 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
pkl-gradle/src/main/java/org/pkl/gradle/TaskConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/** | ||
* Copyright © 2024 Apple Inc. and the Pkl project authors. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.pkl.gradle; | ||
|
||
/** Constant values used by tasks */ | ||
class TaskConstants { | ||
private TaskConstants() { | ||
/* no construction */ | ||
} | ||
|
||
/** Gradle task group declared for code-gen tasks. */ | ||
static final String TASK_GROUP_CODEGEN = "Code generation"; | ||
|
||
/** Gradle task group declared for documentation tasks. */ | ||
static final String TASK_GROUP_DOCS = "Documentation"; | ||
|
||
/** Gradle task description for generating Java code from Pkl modules. */ | ||
static final String GENERATE_JAVA_DESCRIPTION = "Generate Java code from Pkl modules"; | ||
|
||
/** Gradle task description for generating Kotlin code from Pkl modules. */ | ||
static final String GENERATE_KOTLIN_DESCRIPTION = "Generate Kotlin code from Pkl modules"; | ||
|
||
/** Gradle task description for generating Pkldoc from Pkl modules. */ | ||
static final String GENERATE_PKLDOC_DESCRIPTION = "Generate Pkldoc from Pkl modules"; | ||
} |