iterator-maven-plugin
iterator-maven-plugin copied to clipboard
How to access itemWithProperty values
<itemsWithProperties>
<itemWithProperty>
<name>videos</name>
<properties>
<key>video1.mp4</key>
</properties>
</itemWithProperty>
</itemsWithProperties>
How do I access the value video1.mp4?
I have the same question, please let us know if you have any suggestions :)
@kensplanet I figured this out after digging around in the test code a bit. in your example above you simply do ${key} to access video1.mp4. This should probably be added to the documentation.