Skip to content

Commit

Permalink
Issue #110: Align logFile extension property with task property name.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmuschko committed Sep 6, 2015
1 parent 378c9ee commit f828334
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Expand Up @@ -2,6 +2,7 @@

* Fix typo in task description - [Pull request 135](https://github.com/bmuschko/gradle-cargo-plugin/pull/135).
* Fixed configFile and file destination dir specification - [Pull request 121](https://github.com/bmuschko/gradle-cargo-plugin/pull/121).
* Align `logFile` extension property with task property name - [Issue 110](https://github.com/bmuschko/gradle-cargo-plugin/issues/110).
* Removed "magic" project properties.

### Version 2.2 (August 31, 2015)
Expand Down
Expand Up @@ -62,7 +62,7 @@ class CargoPlugin implements Plugin<Project> {
conventionMapping.map('homeDir') { cargoPluginExtension.local.homeDir }
conventionMapping.map('configHomeDir') { cargoPluginExtension.local.configHomeDir }
conventionMapping.map('outputFile') { cargoPluginExtension.local.outputFile }
conventionMapping.map('logFile') { cargoPluginExtension.local.log }
conventionMapping.map('logFile') { cargoPluginExtension.local.logFile }
conventionMapping.map('rmiPort') { cargoPluginExtension.local.rmiPort }
conventionMapping.map('timeout') { cargoPluginExtension.timeout }
conventionMapping.map('zipUrlInstaller') { cargoPluginExtension.local.zipUrlInstaller }
Expand Down
Expand Up @@ -28,7 +28,7 @@ class CargoLocalTaskConvention {
File homeDir
File configHomeDir
File outputFile
File log
File logFile
Integer rmiPort
ZipUrlInstaller zipUrlInstaller = new ZipUrlInstaller()
def configFiles = []
Expand Down

0 comments on commit f828334

Please sign in to comment.