Skip to content
Snippets Groups Projects
Name Last commit Last update
..
nbproject
src
README.md
build.xml

Using Netbeans for MV3500 Deliverables

Initialization and Refresh

To submit homework via Netbeans to the gitlab server you will first need to clone a copy of the course repository at

Use Netbeans to upload/update your homework assignments as follows:

  1. context menu: Git > Remote > Pull from Upstream to first always ensure you update your repository
  2. Select file of interest in Netbeans tab for Files
  3. context menu: Refactor/Rename and take spaces out of file name (gets wacky on various operating systems, email etc.)
  4. Ensure Java classes and source files start with your last name
  5. context menu: Run file(s) to test
  6. context menu: Git > commit; provide comment documenting the change
  7. Verify that the entry in Files tab goes from green to black, indicating you have committed to your local repository.
  8. context menu: Git > Remote > Push to Upstream

Adding Your Files

All MV3500 cohorts have source code collected under a common Netbeans project.

  1. You can look at earlier cohort submissions, for example deliverables / src / MV3500Cohort2018JanuaryMarch
  2. Find your current cohort src subdirectories, for example deliverables / src / MV3500Cohort2018JulySeptember
  3. Locate the correct subdirectory (for example homework1) to put your files.
  4. Name all of your files starting with your last name, e.g. LastnameProgram.java LastnameScreenshot.png etc.
  5. Be sure that names match for LastnameProgram.java and the class name, i.e. public class LastnameJava
  6. Be sure to start each .java source file with correct package name, i.e.
    1. import MV3500Cohort2018JulySeptember.homework;
  7. The Run and Debug context menus should be available for you to test your .java source.
  8. Be sure to Commit and Push Upstream, as discussed above.

You can now verify that your files are been shared by checking the website:

References