Hi i am new to the world of continuous integration. could someone please explain to me the idea of artifacts in the build process ?
i have the workspace directory where i check out the code to, compile, and run my ant scripts etc. at the end, in my case i get a jar file, ready to install. is that considered to be the artifact ?
where should i tell my ant task to put the jar file ? in workspace direcory ? then how do i use the artifacts Archive the artifacts option correctly ? my jar file gets a unique filename depending on variables like BUILD_ID and such, how can i tell hudson which jar file to pick ?
i am a little confused here, would appreciate any explanation or a link to an explanation on the web (most of the pages i found weren't so easy to understand for a newbie)
thanks !
EDIT: Okay, so i try to do something like this :

the path does not exist yet in my workspace, because the ant script is suppose to create it, and of course, the .jar and .properties files are not there because they haven't been generated yet. why does it give me an error then ? seems like i'm missing something.
also, does jenkins delete the artifacts after each build (not the archived artifacts, i know i can tell it to delelte those)? otherwise it will clog the HDD really fast.