Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does dot mean in bin.includes in build.properties in Eclipse RCP?

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?

like image 770
Suzan Cioc Avatar asked Jan 05 '14 23:01

Suzan Cioc


1 Answers

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.

like image 107
greg-449 Avatar answered Sep 21 '22 10:09

greg-449