Compare commits

...

2 Commits

Author SHA1 Message Date
b0d23a0003 chore(quarkus-327): bump to Quarkus 3.27.3 LTS, make pom autonomous, rename deprecated config keys 2026-04-23 14:46:48 +00:00
dahoud
401a72458b chore: taglib PrimeFaces Freya + logo + cleanup OrganisationDetailBean
- META-INF/primefaces-freya.taglib.xml : tags PrimeFaces Freya
- src/main/webapp/resources/images/unionflow-logo.png : logo app
- OrganisationDetailBean : cleanup mineur (2 lignes)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-21 12:43:56 +00:00
198 changed files with 41220 additions and 41149 deletions

View File

@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<facelet-taglib xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facelettaglibrary_2_0.xsd" version="2.0">
<namespace>http://primefaces.org/freya</namespace>
<tag>
<description><![CDATA[Menu is a navigation component for Freya Layout.]]></description>
<tag-name>menu</tag-name>
<component>
<component-type>org.primefaces.component.FreyaMenu</component-type>
<renderer-type>org.primefaces.component.FreyaMenuRenderer</renderer-type>
</component>
<attribute>
<description><![CDATA[Unique identifier of the component in a namingContainer.]]></description>
<name>id</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Boolean value to specify the rendering of the component, when set to false component will not be rendered.]]></description>
<name>rendered</name>
<required>false</required>
<type>java.lang.Boolean</type>
</attribute>
<attribute>
<description><![CDATA[An el expression referring to a server side UIComponent instance in a backing bean.]]></description>
<name>binding</name>
<required>false</required>
<type>jakarta.faces.component.UIComponent</type>
</attribute>
<attribute>
<description><![CDATA[Name of the client side widget.]]></description>
<name>widgetVar</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[A menu model instance to create menu programmatically.]]></description>
<name>model</name>
<required>false</required>
<type>org.primefaces.model.menu.MenuModel</type>
</attribute>
<attribute>
<description><![CDATA[Inline style of the main container element.]]></description>
<name>style</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Style class of the main container element.]]></description>
<name>styleClass</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
<attribute>
<description><![CDATA[Delay to wait in milliseconds before closing menu on mouse leave. Default is 250.]]></description>
<name>closeDelay</name>
<required>false</required>
<type>java.lang.Integer</type>
</attribute>
</tag>
</facelet-taglib>

29
pom.xml
View File

@@ -4,14 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>dev.lions.unionflow</groupId>
<artifactId>unionflow-parent</artifactId>
<version>1.0.5</version>
<relativePath>../unionflow-server-api/parent-pom.xml</relativePath>
</parent>
<artifactId>unionflow-client-quarkus-primefaces-freya</artifactId>
<version>1.0.7</version>
<packaging>jar</packaging>
<name>UnionFlow Client (Quarkus + PrimeFaces Freya)</name>
@@ -23,12 +18,16 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.version>3.15.1</quarkus.platform.version>
<quarkus.platform.version>3.27.3</quarkus.platform.version>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus-primefaces.version>3.13.3</quarkus-primefaces.version>
<primefaces.version>14.0.5</primefaces.version>
<omnifaces.version>4.4.1</omnifaces.version>
<lombok.version>1.18.38</lombok.version>
<!-- Overrides BOM : Docker Desktop 29.x compat -->
<testcontainers.version>1.21.4</testcontainers.version>
<docker-java.version>3.4.2</docker-java.version>
</properties>
<dependencyManagement>
@@ -40,6 +39,20 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>${testcontainers.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Lombok : pas dans Quarkus BOM -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
@@ -129,7 +142,7 @@
<dependency>
<groupId>dev.lions.unionflow</groupId>
<artifactId>unionflow-server-api</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</dependency>
<!-- Lions User Manager Client - Module réutilisable de gestion d'utilisateurs Keycloak -->

View File

@@ -88,7 +88,6 @@ public class OrganisationDetailBean implements Serializable {
if (organisation != null) {
String libelle = typeCatalogueService.resolveLibelle(organisation.getTypeOrganisation());
organisation.setTypeOrganisationLibelle(libelle);
organisation.setTypeLibelle(libelle);
}
} catch (Exception e) {
LOG.errorf(e, "Erreur lors du chargement de l'organisation");
@@ -132,7 +131,6 @@ public class OrganisationDetailBean implements Serializable {
if (organisation != null) {
String libelle = typeCatalogueService.resolveLibelle(organisation.getTypeOrganisation());
organisation.setTypeOrganisationLibelle(libelle);
organisation.setTypeLibelle(libelle);
}
modeEdition = false;
errorHandler.showSuccess("Succès", "Organisation modifiée avec succès.");

View File

@@ -46,7 +46,7 @@ quarkus.http.enable-compression=true
quarkus.http.compression-level=6
# Configuration logging - Production
quarkus.log.console.enable=true
quarkus.log.console.enabled=true
quarkus.log.console.level=INFO
quarkus.log.console.format=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c{2.}] (%t) %s%e%n
quarkus.log.category."dev.lions.unionflow".level=INFO

View File

@@ -11,7 +11,7 @@ quarkus.http.tcp-quick-ack=true
quarkus.http.tcp-cork=true
# Configuration logging
quarkus.log.console.enable=true
quarkus.log.console.enabled=true
quarkus.log.console.level=INFO
quarkus.log.console.format=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c{2.}] (%t) %s%e%n

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB