phase 0 - isel-leic-ls/2122-2-common GitHub Wiki
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
commonrepo -git remote add common https://github.com/isel-leic-ls/2122-2-common.git. - Pull the contents from the
commonrepo -git pull common main. - Remove the current content of
README.meand 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 main.
- 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. Postgres) 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.INSERTandUPDATE) 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.0and 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