-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from BME-MIT-IET/sopar-doc
Dokumentáció Adrián munkájához
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Build rendszer és CI beüzemelése | ||
|
||
## Maven | ||
A projket kezdetben nem használt semmilyen build rendszert (kézzell kellett fordítani). Ezért készítettem hozzá egy pom.xml fájlt, illetve átstruktúráltam a fájlokat és csomagokat a maven konvencióknak megfelelően. | ||
|
||
## Github actions | ||
Létrehoztam egy github actions-t a projektnek, hogy a tesztek minden 'main' ágra érkező commit esetén lefussanak. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Statikus analízis használata | ||
|
||
## Sonarcloud beüzemelése a projekthez. | ||
A CI futtassa a statikus analízis eszközt. | ||
|
||
## Sonarcloud által jelzett hibák javítása | ||
Az általam javított hiba a következő volt: | ||
Több osztályon fellül volt írva az equals() úgy, hogy a hashCode() nem, pedig javaban elvárt viselkedés, hogy ha két objektum egyenlő az equals() szerint, akkor a hashCode()-nak ugyanazt az eredményt kell adnia mindkét objektumon meghívva. |