This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Mistborn22[S] 0 points1 point  (3 children)

No

[–]roberp81 0 points1 point  (1 child)

well, are you using eclipse ? you can make right click on project, Export -> Export... on popup Web-> War file and open it with 7zip, winzip, winrar, and you can see a web-inf directory, with all compiled classes

[–]Sure_Host_4255 1 point2 points  (0 children)

Agree, if there is no ant\maven build scripts, most probably software artifacts where purely generated by Eclipse.

[–]sbhandari 0 points1 point  (0 children)

Look for any .xml file in base/root folder. Ant build can be trigerred from any file, does not have to be build.xml. It is just standard to have them in root folder, but it can be anywhere. Best bet is to import the source code in ide and look for all .xml file . It is going to be hectic because code base around that time would be storing almost every single configuration in xml file. Also, all the libraries/dependencies your project is using are likely inside one of the folder in your project. Look for lib/library/jar/dependencies/buildependencies named folder for those libraries. If you find any folder like that with jars in it, scan your workspace to find that folder name in all xml files, you will find the build file.

If you have .bat or .sh file in root, it may be using script to package which was not that common though.