stempler / gradle-versioneye-plugin

Plugin for Gradle to update your project's dependencies status on www.versioneye.com
MIT License
31 stars 5 forks source link

Bug: Content of gradle.properties is overwritten #8

Closed johnjohndoe closed 8 years ago

johnjohndoe commented 9 years ago

If the file gradle.properties already exists and contains content such as the following the task versionEyeCreate deletes the whole content and inserts its configuration.

# Some content I want to keep
# Do not delete this

I suggest you just append your configuration to leave the existing content untouched.

stempler commented 9 years ago

True, comments are not retained. I used the standard Java Properties API for simplicity, but this could be changed with small effort.

johnjohndoe commented 8 years ago

:smiley_cat: