Downloading and Building from Source Code
The best way for you to get the source code is to use the NetBeans IDE.
Step 1. Fork the repository. By doing this, you will get the copy of the project on your own GitHub profile. In order to be able to do this you must have GitHub account.
Step 2. Clone the repository you just made. You can do that in NetBeans IDE by:
- In Menu bar, click Team -> Git -> Clone
- Enter the address of the repository in the
Specify Git Repository Location
. - Insert the location on your computer where you want to save the project. Field for the input is
Specify destination folder
. - Click
Next
. - Select check-box next to the
master
branch. - Click
Next
, and then clickFinish
. - Wait for NetBeans IDE to download the source code from the remote repository. Speed will depend on your internet connection.
- Click
Open Project
. - Select check-box
Open Required
. - Select UML project and click
Open
.
Congratulations, you have cloned the remote repository by using NetBeans IDE!
Now, in Projects
window, you can see all of the modules for the easyUML plugin.
- Now, you should
Right Click
on UML project, it is a module suite. In the menu, selectBuild
option. Wait a minute or two. Speed will depend on your hardware configuration. You should see BUILD SUCCESSFUL message in Output section. - To start the project,
Right Click
on UML project, and in the menu, select theRun
option. By doing this, you will start a project, and you will see the easyUML graphical user interface.
Alternative way to download the source code
To download the source code type in your terminal:
git clone https://github.com/ossdcfos/easyuml.git
Also, you can download the project in the .zip format by clicking on the Download ZIP
option on the GitHub repository page.
Preferable way is to use NetBeans Team option described above.