Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: Multiple people working on the same project[SOLVED]

  1. #1
    Junior Member
    Join Date
    Feb 2013
    Posts
    29
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Multiple people working on the same project[SOLVED]

    I have knowledge of java on a beginner level, and recently my friend started learning. He has gotten a bit and we are thinking about trying to make a program together, but the problem is I'm not sure what the easiest way to do it. Like is there some kind of program that allows us to work on the same project in real-time, or do we set up some rules on how we are supposed to make different classes and then one of us gets to put them all together? I have no experience at all when it comes to multiple people, so i appreciate any help. Thank you for your time!
    Last edited by albin1228; March 15th, 2014 at 06:21 PM.


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Multiple people working on the same project

    Open a project on one of the free project hosting sites, Google Code, BitBucket, GitHub, etc. You'll have to learn how to use the underlying source code version control system, but that's not a big deal.

    One of you should agree to oversee management of the project (maybe you could take turns), and the other should agree to be managed. Then, you and your partner should outline the design together (document your decisions) and then decide who will do which parts of the code. Document everything you both decide - not like it's needed for contractual purposes, but so that each of you knows what you're responsible for. The manager should determine the project's dependencies on the various parts, and develop a schedule that shows the flow of code development, build, and test.

    There's much more on software project management that could fill a couple semester's worth of college coursework, but you'll learn it or invent it along the away.

    Good luck!

  3. #3
    Junior Member
    Join Date
    Feb 2013
    Posts
    29
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Multiple people working on the same project

    Quote Originally Posted by GregBrannon View Post
    Open a project on one of the free project hosting sites, Google Code, BitBucket, GitHub, etc. You'll have to learn how to use the underlying source code version control system, but that's not a big deal.

    One of you should agree to oversee management of the project (maybe you could take turns), and the other should agree to be managed. Then, you and your partner should outline the design together (document your decisions) and then decide who will do which parts of the code. Document everything you both decide - not like it's needed for contractual purposes, but so that each of you knows what you're responsible for. The manager should determine the project's dependencies on the various parts, and develop a schedule that shows the flow of code development, build, and test.

    There's much more on software project management that could fill a couple semester's worth of college coursework, but you'll learn it or invent it along the away.

    Good luck!
    Thank you, it helped alot!

Similar Threads

  1. Project Not Working
    By anniexd92 in forum What's Wrong With My Code?
    Replies: 5
    Last Post: March 8th, 2014, 08:23 PM
  2. Replies: 4
    Last Post: June 13th, 2013, 10:55 AM
  3. Hey guys, I'm having a little trouble working with multiple classes.
    By worsewicked in forum Object Oriented Programming
    Replies: 4
    Last Post: January 18th, 2012, 08:03 PM
  4. Replies: 9
    Last Post: January 12th, 2012, 05:03 PM
  5. working with multiple threads
    By retsameht in forum What's Wrong With My Code?
    Replies: 2
    Last Post: November 9th, 2010, 01:36 PM