I have gradle-based Groovy project; it's application. Gradle version is 4.1.
group 'com.vendor.path'
version '0.1-SNAPSHOT'
apply plugin: 'groovy'
apply plugin: 'application'
I want to extract version and buildtime into *.resources for use them at runtime (About box, logs).
How may I got it without Git? Is Git versioning plugin more suitable for my question?