This message was deleted.
# questions
s
This message was deleted.
r
Got there eventually:
Copy code
@Autowired
ResourceLoader resourceLoader

private def loadBuildProperties() {
    Resource resource = resourceLoader.getResource("classpath:/META-INF/build-info.properties")
    Properties properties = new Properties()
    properties.load(resource.getInputStream())
    buildProperties = new BuildProperties(properties)}