esycat / gradle-config-plugin

Gradle plugin to expand dotted properties into nested maps.
Other
2 stars 1 forks source link

Plugin requires JDK 7 #1

Open phiryll opened 11 years ago

phiryll commented 11 years ago

The usage of java.nio.file.* will only work on JDK 7, and perhaps other classes as well. Gradle itself is advertised as working on JDK 1.5, so I would suggest that your audience would be larger if you can limit your code to using JDK classes and methods present in JDK 1.5.

esycat commented 11 years ago

Yeah, I can create another version that will be compatible with JDK 1.6. NIO2 classes aren't really needed, I just wanted to play with them.

Thanks.