This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Map valuesMap = HashMap(); | |
valuesMap.put("animal", "quick brown fox"); | |
valuesMap.put("target", "lazy dog"); | |
String templateString = "The ${animal} jumped over the ${target}."; | |
StrSubstitutor sub = new StrSubstitutor(valuesMap); | |
String resolvedString = sub.replace(templateString); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-eclipse-plugin</artifactId> | |
<version>2.8</version> | |
<configuration> | |
<wtpversion>2.0</wtpversion> | |
<downloadSources>true</downloadSources> | |
<downloadJavadocs>true</downloadJavadocs> | |
</configuration> | |
</plugin> |
NewerOlder