Update dependencies - spring boot 4 and angular 21 (#10)
Build and Deploy Java Gradle Application / build-and-deploy (push) Successful in 1m39s

Co-authored-by: Florian THIERRY
Reviewed-on: florian/codiki-hexagonal#10
This commit was merged in pull request #10.
This commit is contained in:
2025-12-30 17:45:03 +01:00
co-authored by Tamotsu
parent 03dd52de71
commit 1ca2f872f7
30 changed files with 5178 additions and 8741 deletions
@@ -1,4 +1,4 @@
import { CommonModule } from '@angular/common';
import { Component, inject } from '@angular/core';
import { FormControl, ReactiveFormsModule } from '@angular/forms';
import { MatButtonModule } from '@angular/material/button';
@@ -12,10 +12,8 @@ import { PublicationsSearchBarComponent } from '../publications-search-bar/publi
import { SideMenuComponent } from '../side-menu/side-menu.component';
@Component({
selector: 'app-header',
standalone: true,
imports: [
CommonModule,
selector: 'app-header',
imports: [
MatButtonModule,
MatIconModule,
MatMenuModule,
@@ -24,10 +22,10 @@ import { SideMenuComponent } from '../side-menu/side-menu.component';
PublicationsSearchBarComponent,
ReactiveFormsModule,
RouterModule,
SideMenuComponent,
],
templateUrl: './header.component.html',
styleUrl: './header.component.scss',
SideMenuComponent
],
templateUrl: './header.component.html',
styleUrl: './header.component.scss'
})
export class HeaderComponent {
private authenticationService = inject(AuthenticationService);