-
Notifications
You must be signed in to change notification settings - Fork 0
phase 0
Pedro Felix edited this page Mar 1, 2020
·
2 revisions
Perform the following operations only once for each group:
- Clone the group's repository -
git clone <group-repo-url>
. - Add a remote pointing to the
common
repo -git remote add common https://github.com/isel-leic-ls/1920-2-common.git
. - Pull the contents from the
common
repo -git pull common master
. - Remove the current content of
README.me
and add the number and name of each group member (use the markdown format). - Create a commit containing those changes.
- Push the commits to the group's repository -
git push origin master
.
- Ensure you have an updated repo.
- Execute the unit tests using Gradle and check that there is an error.
- Create a project in IntelliJ using the recommendations of the previous classes.
- Execute the same testes now using the IntelliJ IDE.
- Correct the cause of the error and check that all tests are now correctly executed.
- Add more tests if necessary.
- Check, using the Gradle build script at the command line, that all the tests are executed with success.
- Publish all the changes (if any) to the local and group repository. Make one or more commits for this task.
- Create a database in the chosen DB Management system (i.e. SQLServer) on your machine. Add a table to represent students.
- Make a set of tests to check that your system can read (i.e.
SELECT
), update (i.e.INSERT
andUPDATE
) and delete (i.e.DELETE
) over the previous table, using the JDBC interface. Assign different tests to each member of the group. - Publish the changes to the group repo.
- Create a tag with the identifier
0.0.0
and publish it to the group repo
-
git tag -a 0.0.0 -m "Version 0.0.0"
. -
git push origin 0.0.0
. - Performed only once per group.