Skip to content

Commit

Permalink
Merge pull request #10 from progress/zerovian/Issue_9
Browse files Browse the repository at this point in the history
Zerovian/issue 9
  • Loading branch information
audaciousanil authored Jan 29, 2020
2 parents 670ed43 + 08c75ad commit dccec91
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ can use it by just adding this to your `build.gradle`:

```groovy
plugins {
id "oe.espresso.latte.latte" version "0.2.1"
id "oe.espresso.latte.latte" version "0.2.2"
}
```

Expand All @@ -26,7 +26,7 @@ This will add [PCT][] tasks and types to your project and integrate

The following are a list of enhancements beyond the original [grabl] plugin

- adds a dependency on [PCT] 211
- adds a dependency on [PCT] 214
- adds a dependency on Google gson 2.8.0 which is required by PCT ABLUnit task
- adds a backup database task
- adds the ability to run ABL code as a task
Expand Down
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
id "groovy"
}

version = "0.2.1"
version = "0.2.2"
group = 'oe.espresso'

ext {
Expand Down Expand Up @@ -86,23 +86,23 @@ def pluginList = [
new GradlePluginMetaData(
"${project.name}-base",
'A Gradle base plugin for ABL language support based on PCT',
"${project.group}.${project.name}-base",
"${project.group}.LatteBasePlugin"
'oe.espresso.latte.latte-base',
'oe.espresso.latte.LatteBasePlugin'
),
new GradlePluginMetaData(
project.name,
"${project.name}",
'A Gradle plugin for ABL language support based on PCT',
"${project.group}.${project.name}",
"${project.group}.LattePlugin"
'oe.espresso.latte.latte',
"oe.espresso.latte.LattePlugin"
)
]

pluginBundle {
website = 'https://github.com/progress/latte'
vcsUrl = vcsBaseUrl
tags = ['abl', 'pct']
tags = ['abl', 'pct', 'openedge']
description = "oe.espresso"
version = "0.2.1"
version = "${version}"
}


Expand Down
4 changes: 2 additions & 2 deletions src/main/groovy/oe/espresso/latte/LatteBasePlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ class LatteBasePlugin implements Plugin<Project> {
void addRsswRepository(Project target) {
target.repositories {
maven {
url 'http://central.maven.org/maven2/'
url 'https://repo1.maven.org'
}
}
}

void addPctDependency(Project target) {
target.dependencies {
pct 'eu.rssw.pct:pct:211'
pct 'eu.rssw.pct:pct:214'
}
}

Expand Down

0 comments on commit dccec91

Please sign in to comment.