as the first spike we'd like to see a quick feel about how it would look like.
Functionality:
Given two sample files (sample1.xml, sample2.xml), when the touch mvn goal is executed on test project, the plugin lists the files into a generated enum, com.mycompany.R:
as the first spike we'd like to see a quick feel about how it would look like. Functionality:
Given two sample files (sample1.xml, sample2.xml), when the touch mvn goal is executed on test project, the plugin lists the files into a generated enum, com.mycompany.R:
package com.mycompany; public enum R {
SAMPLE1_XML("sample1.xml"),SAMPLE2_XML("sample2.xml")
private R(String fileName) { } }