Skip to content

Commit

Permalink
[STUDIO-4580] Upgrade groovy v3.0.17 (#18)
Browse files Browse the repository at this point in the history
* upgrade groovy 2.4.7 -> 3.0.17

---------

Co-authored-by: linhtnl <lamlinh20001@gmail.com>
  • Loading branch information
linhtnlK and linhtnl authored Feb 27, 2024
1 parent 6ba9b2f commit 910da01
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

This Gradle plugin helps simplify/automate some tasks in Katalon Studio. It is published at https://plugins.gradle.org/plugin/com.katalon.gradle-plugin.

## How to build and test
* **Build**
Run `gradle build`
* **Test**
<br>Suggestion plugin: [katalon-studio-zip-keywords-plugin](https://github.com/katalon-studio/katalon-studio-zip-keywords-plugin)
<br>Remove line `'com.katalon.gradle-plugin' version '<version>'`
<br>Adding this script to the build.gradle file in the tested plugin.
```
buildscript{
dependencies{
classpath files('<path>/katalon-gradle-plugin-<version>.jar')
}
}
.....
apply plugin: com.katalon.gradle.plugin.KatalonGradlePlugin
```



## Gradle Tasks

* `katalonCopyDependencies`
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'com.katalon.gradle.plugin'
version = '0.1.1'
version = '0.1.2'

publishing {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class KatalonGradlePlugin implements Plugin<Project> {
static final String RESOURCE_DIR = "Keywords";
static final String METADATA_FILE = "katalon-plugin.json";
static final String GROOVY_DEPENDENCY = "org.codehaus.groovy:groovy-all";
static final String GROOVY_VERSION = "2.4.7";
static final String GROOVY_VERSION = "3.0.17";

private void applyPlugins(Project project) {
project.getPlugins().apply(JavaPlugin.class);
Expand Down

0 comments on commit 910da01

Please sign in to comment.