I want to replace the code snippet between two custom tag (@Start, @End) with empty tag.
public class MyClass{
private String name;
private String age;
@Start
private String address;
private String phoneNumber;
@End
}
These tags are available in multiple files.
Is it possible using maven ? I was looking at http://code.google.com/p/maven-replacer-plugin/ which is used for replacing text/value, i don't think this can be used for replacing content. am i right ? Do we have any other way of doing it ?
Regards Pankaj