-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Class extension and Service classes (#19)
Service classes done. - Adding business-logic and Exceptions to all Service classes. Issues: [Constrain Error while Persist and Fetch operations solved (Solution: own AbstractIdentityClass) Signed-off-by: Kuzu <[email protected]> --------- Signed-off-by: Kuzu <[email protected]>
- Loading branch information
Showing
136 changed files
with
3,978 additions
and
818 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 |
---|---|---|
@@ -1,35 +1,35 @@ | ||
#!/bin/sh | ||
|
||
echo "Pre-commit Hook" | ||
|
||
# should work | ||
# Store the list of staged files | ||
staged_files=$(git diff --cached --name-only) | ||
|
||
# Apply code formatting using spotless | ||
./mvnw spotless:apply | ||
status=$? | ||
|
||
echo "This is status : $status" | ||
|
||
#if [ "$status" = 0 ]; then | ||
# ./gradlew checkstyleMain | ||
# status=$? | ||
##!/bin/sh | ||
# | ||
#echo "Pre-commit Hook" | ||
# | ||
## should work | ||
## Store the list of staged files | ||
#staged_files=$(git diff --cached --name-only) | ||
# | ||
## Apply code formatting using spotless | ||
#./mvnw spotless:apply | ||
#status=$? | ||
# | ||
#echo "This is status : $status" | ||
# | ||
##if [ "$status" = 0 ]; then | ||
## ./gradlew checkstyleMain | ||
## status=$? | ||
##fi | ||
# | ||
# | ||
#if [ "$status" -eq 0 ]; then | ||
# ./mvnw test | ||
# status=$? | ||
#fi | ||
|
||
|
||
if [ "$status" -eq 0 ]; then | ||
./mvnw test | ||
status=$? | ||
fi | ||
|
||
# If code formatting succeeded, bring stashed changes back to staged area | ||
if [ "$status" -eq 0 ]; then | ||
# Add only the files that were previously staged | ||
git add $staged_files | ||
# Proceed with commit- | ||
exit $status | ||
fi | ||
|
||
#fail commit if above didnt work | ||
exit 1 | ||
# | ||
## If code formatting succeeded, bring stashed changes back to staged area | ||
#if [ "$status" -eq 0 ]; then | ||
# # Add only the files that were previously staged | ||
# git add $staged_files | ||
# # Proceed with commit- | ||
# exit $status | ||
#fi | ||
# | ||
##fail commit if above didnt work | ||
#exit 1 |
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
153 changes: 153 additions & 0 deletions
153
src/main/dev-bundle/assets/themes/samic/components/logo_samic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.