Java and Eclipse
1
Name:
Anonymous
2013-06-27 3:56
Hey all,
I'm having slight difficulty in getting an Eclipse project to compile manually on the command line. Using javac, could someone help point me in the direction with a directory as related:
GuiTrunk
/src/
/lib/
/bin/
/.settings/
/.classpath
/.project
Obviously, /src/ contains our source files and /lib/ has the required external jar files, with /bin/ being the destination for the .class files etc.
2
Name:
Anonymous
2013-06-27 4:17
Maven.
3
Name:
Anonymous
2013-06-27 4:23
白い豚、自分を殺せ
4
Name:
Anonymous
2013-06-27 4:25
Not your tech support, bitch.
5
Name:
Anonymous
2013-06-27 7:43
Support your bitch, tech.
6
Name:
Anonymous
2013-06-27 9:00
BitchTech - The id Software killer.
7
Name:
Anonymous
2013-06-27 9:18
I'd love to help but I've never tried that before. I just use Eclipse to handle everything.
8
Name:
Anonymous
2013-06-27 9:35
you dont use javac. you use maven (mvn) for that.
is not very simple to understand but spend 1 full hour reading a tutorial of maven and you'll get it.
9
Name:
Anonymous
2013-06-27 10:29
You don't use Java, you use Lisp for that.
10
Name:
Anonymous
2013-06-27 10:42
>>9
Is this "Lisp" a language?
11
Name:
Anonymous
2013-06-27 11:03
Lisp isn't a language
12
Name:
Anonymous
2013-06-27 11:22
>>3
>>5
>>6
>>4
toplel
>>7
Thank you for the bump anyway
>>2
>>8
Thanks guys, I decided to stop trying to do everything too quickly and read up on it. I'm pretty much done.
13
Name:
ENTERPRISE DRONE
2013-06-27 15:39
You should use Maven even if you use Eclipse
Copying .jars manually to your lib folder is retarded and ultimately destructive. Use maven to manage your dependencies automatically.
Also Maven creates a standard, well thought project skeleton ideal for unit testing, WHICH YOU SHOULD DO ALWAYS.