I have the following build.properties
in my sample application:
source.. = src/
output.. = bin/
bin.includes = plugin.xml,\
META-INF/,\
.
File was generated by IDE.
What does dot at the end mean?
If it means to process all files in the current directory, then what for plugin.xml
file mentioned there? Since it is in the current directory it would be processed implicitly by dot.
If it means to process all subdirectories in the current directory, then what for META-INF
directory mentioned there? Since it is in the current directory it would be processed implicitly by dot.
If non above is correct, then what does dot mean actually? If I set there some myfile.bin
, what will happen then?
It means the folder configured by the output..
line - this line is a bit confusing, it is output.
followed by a folder, in this case .
. This is the same as the default output folder configured in the Java Build Path
.
So .
actually mean the contents of the bin
folder.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With