ProyectoIntermodular/javafx-client/pom.xml

112 lines
3.9 KiB
XML
Raw Normal View History

2026-05-15 14:51:26 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.teterialosjuanjos.tfg</groupId>
<artifactId>javafx-client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>javafx-client</name>
<description>TFG — JavaFX Desktop Client para Sync Service</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<javafx.version>21.0.2</javafx.version>
<javafx.maven.plugin.version>0.0.8</javafx.maven.plugin.version>
</properties>
<dependencies>
feat(javafx-client): redesign UI to match Android app and fix functional bugs - Add typed DTOs (SyncLogResponse, ProductMappingResponse, OrderMappingResponse, SyncTriggerResponse, AppSettings) replacing fragile Map<String,Object> API - Add SettingsStore (java.util.prefs) for persistent credentials across sessions - Add DateUtils for relative time, duration, localized status labels - Add LogDetailDialog (modal Stage) with status banner and error details - Rewrite DashboardController: 3 sync cards, last log info, sync-all with progress, 30s auto-refresh - Rewrite ProductsController: SKU search, filter chips, status chips, typed table - Rewrite OrdersController: typed table, status chips, Spanish labels - Rewrite LogsController: filter chips, status icons, click row opens LogDetailDialog - Rewrite SettingsController: password toggle, test connection, save to SettingsStore - Rewrite LoginStage: pre-fill from SettingsStore, Material 3 card layout - Rewrite MainStage: 5 tabs (Panel/Productos/Pedidos/Historial/Ajustes), blue header - Rewrite SyncServiceClient to return typed DTOs via Jackson ObjectMapper - Rewrite SessionManager to load/save settings via SettingsStore - Rewrite styles.css: Material 3 palette matching Android app - Fix logback.xml package name (javafx_client -> javafxclient) - Fix dashboard showing oldest log instead of newest (putIfAbsent) - Fix wrong API field names (processed/failed -> itemsProcessed/itemsFailed) - Remove unused javafx-fxml, javafx-swing deps and broken maven-shade-plugin - Add javafx-client/.gitignore and remove target/ from tracking Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-17 18:12:44 +00:00
<!-- JavaFX -->
2026-05-15 14:51:26 +00:00
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>${javafx.version}</version>
</dependency>
feat(javafx-client): redesign UI to match Android app and fix functional bugs - Add typed DTOs (SyncLogResponse, ProductMappingResponse, OrderMappingResponse, SyncTriggerResponse, AppSettings) replacing fragile Map<String,Object> API - Add SettingsStore (java.util.prefs) for persistent credentials across sessions - Add DateUtils for relative time, duration, localized status labels - Add LogDetailDialog (modal Stage) with status banner and error details - Rewrite DashboardController: 3 sync cards, last log info, sync-all with progress, 30s auto-refresh - Rewrite ProductsController: SKU search, filter chips, status chips, typed table - Rewrite OrdersController: typed table, status chips, Spanish labels - Rewrite LogsController: filter chips, status icons, click row opens LogDetailDialog - Rewrite SettingsController: password toggle, test connection, save to SettingsStore - Rewrite LoginStage: pre-fill from SettingsStore, Material 3 card layout - Rewrite MainStage: 5 tabs (Panel/Productos/Pedidos/Historial/Ajustes), blue header - Rewrite SyncServiceClient to return typed DTOs via Jackson ObjectMapper - Rewrite SessionManager to load/save settings via SettingsStore - Rewrite styles.css: Material 3 palette matching Android app - Fix logback.xml package name (javafx_client -> javafxclient) - Fix dashboard showing oldest log instead of newest (putIfAbsent) - Fix wrong API field names (processed/failed -> itemsProcessed/itemsFailed) - Remove unused javafx-fxml, javafx-swing deps and broken maven-shade-plugin - Add javafx-client/.gitignore and remove target/ from tracking Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-17 18:12:44 +00:00
<!-- JSON (Jackson) -->
2026-05-15 14:51:26 +00:00
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.18.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.18.0</version>
</dependency>
<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.13</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.6</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>21</source>
<target>21</target>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
feat(javafx-client): redesign UI to match Android app and fix functional bugs - Add typed DTOs (SyncLogResponse, ProductMappingResponse, OrderMappingResponse, SyncTriggerResponse, AppSettings) replacing fragile Map<String,Object> API - Add SettingsStore (java.util.prefs) for persistent credentials across sessions - Add DateUtils for relative time, duration, localized status labels - Add LogDetailDialog (modal Stage) with status banner and error details - Rewrite DashboardController: 3 sync cards, last log info, sync-all with progress, 30s auto-refresh - Rewrite ProductsController: SKU search, filter chips, status chips, typed table - Rewrite OrdersController: typed table, status chips, Spanish labels - Rewrite LogsController: filter chips, status icons, click row opens LogDetailDialog - Rewrite SettingsController: password toggle, test connection, save to SettingsStore - Rewrite LoginStage: pre-fill from SettingsStore, Material 3 card layout - Rewrite MainStage: 5 tabs (Panel/Productos/Pedidos/Historial/Ajustes), blue header - Rewrite SyncServiceClient to return typed DTOs via Jackson ObjectMapper - Rewrite SessionManager to load/save settings via SettingsStore - Rewrite styles.css: Material 3 palette matching Android app - Fix logback.xml package name (javafx_client -> javafxclient) - Fix dashboard showing oldest log instead of newest (putIfAbsent) - Fix wrong API field names (processed/failed -> itemsProcessed/itemsFailed) - Remove unused javafx-fxml, javafx-swing deps and broken maven-shade-plugin - Add javafx-client/.gitignore and remove target/ from tracking Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-17 18:12:44 +00:00
<!-- Ejecutar con: mvn javafx:run -->
2026-05-15 14:51:26 +00:00
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>${javafx.maven.plugin.version}</version>
<configuration>
<mainClass>com.teterialosjuanjos.tfg.javafxclient.JavaFxClientApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
feat(javafx-client): redesign UI to match Android app and fix functional bugs - Add typed DTOs (SyncLogResponse, ProductMappingResponse, OrderMappingResponse, SyncTriggerResponse, AppSettings) replacing fragile Map<String,Object> API - Add SettingsStore (java.util.prefs) for persistent credentials across sessions - Add DateUtils for relative time, duration, localized status labels - Add LogDetailDialog (modal Stage) with status banner and error details - Rewrite DashboardController: 3 sync cards, last log info, sync-all with progress, 30s auto-refresh - Rewrite ProductsController: SKU search, filter chips, status chips, typed table - Rewrite OrdersController: typed table, status chips, Spanish labels - Rewrite LogsController: filter chips, status icons, click row opens LogDetailDialog - Rewrite SettingsController: password toggle, test connection, save to SettingsStore - Rewrite LoginStage: pre-fill from SettingsStore, Material 3 card layout - Rewrite MainStage: 5 tabs (Panel/Productos/Pedidos/Historial/Ajustes), blue header - Rewrite SyncServiceClient to return typed DTOs via Jackson ObjectMapper - Rewrite SessionManager to load/save settings via SettingsStore - Rewrite styles.css: Material 3 palette matching Android app - Fix logback.xml package name (javafx_client -> javafxclient) - Fix dashboard showing oldest log instead of newest (putIfAbsent) - Fix wrong API field names (processed/failed -> itemsProcessed/itemsFailed) - Remove unused javafx-fxml, javafx-swing deps and broken maven-shade-plugin - Add javafx-client/.gitignore and remove target/ from tracking Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-17 18:12:44 +00:00
</project>