Skip to content

Commit

Permalink
Merge pull request #16 from IntershopCommunicationsAG/removedeprecation
Browse files Browse the repository at this point in the history
Removedeprecation
  • Loading branch information
m-raab authored Jun 3, 2019
2 parents 9961431 + 1d73575 commit c2026ee
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.asciidoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
= Gradle Plugin for Editing Atlassian Jira Issues
:latestRevision: 3.2.0
:latestRevision: 4.0.0

NOTE: Version 3.1 of this plugin will only work with Gradle 4.4 and JDK 8.

NOTE: Version 4.0 of this plugin will only work with Gradle 5.X and JDK 8.

== Summary
This plugin iterates over a list of Atlassian JIRA issues and edit the defined field with a given value. The list of
issues is defined by an line-based text file. It works for example together with the result of the task 'createChangelog'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ test {
}

// Gradle versions for test
systemProperty 'intershop.gradle.versions', '4.9,5.2'
systemProperty 'intershop.gradle.versions', '5.4'
}

task copyAsciiDoc {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class JiraConnectorExtension {

runOnCI = project.objects.property(Boolean)

issueFile = project.layout.fileProperty()
issueFile = project.objects.fileProperty()

linePattern = project.objects.property(String)
fieldName = project.objects.property(String)
Expand Down

0 comments on commit c2026ee

Please sign in to comment.