Core Maven Plugins

This commit is contained in:
Nguyen Nam Thai
2018-03-26 10:40:54 +07:00
parent 8441d41fdc
commit 4af43a4bd1
9 changed files with 174 additions and 0 deletions
@@ -0,0 +1,16 @@
package com.baeldung.maven.plugins;
import java.util.ArrayList;
import java.util.List;
public class Data {
List<String> textList = new ArrayList();
public void addText(String text) {
textList.add(text);
}
public List getTextList() {
return this.textList;
}
}