カスタムantタスクのソースファイルを開きたい。クラスローダーのgetリソースがすぐにソースファイルを見つけてくれるので、これは簡単だと思いました。間違い!
これが私のコードです:
//build the name of the template
StringBuilder sb = new StringBuilder(VersionTemplate.class.getName());
sb.append(".java");
String templateName = sb.toString();
//find the template
InputStream inputStream = VersionTemplate.class.getResourceAsStream(templateName);
inputStreamは常にnullです。
何か案は?