OK, I'm at a standstill.
I have a Java tree that looks like a pretty typical Java Eclipse build:
myproject src com example test // Java files in com.example.test here bin com example test // Compiled class files will go here
Now I have the MyClass.properties file in myproject/src/com/example/test along with the Java source files. How to write an appropriate ant task to copy all modified .properties files in the source tree to the appropriate places in the assembly tree ( myproject/bin )?
(The simpler half is to make the actual copy, the more complex half of this, I suppose, is checking the dependencies)
java properties ant
Jason s
source share