feat(controller): 新增多个任务类用于合同和客户相关操作 feat(service): 新增ProxyUtils工具类替代Hibernate.isInitialized检查 refactor(controller): 重构多个控制器和皮肤类,使用ProxyUtils替代Hibernate refactor(service): 重构服务类,移除Hibernate依赖并优化方法实现 fix(controller): 修复表格单元格初始化逻辑,确保代理对象正确加载 chore: 更新项目版本号至0.0.58-SNAPSHOT docs: 添加MyProperties类用于管理下载路径配置
125 lines
4.8 KiB
XML
125 lines
4.8 KiB
XML
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.ecep.contract</groupId>
|
|
<artifactId>Contract-Manager</artifactId>
|
|
<version>0.0.58-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>com.ecep.contract</groupId>
|
|
<artifactId>client</artifactId>
|
|
<version>0.0.58-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.ecep.contract</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>0.0.58-SNAPSHOT</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- JavaFX -->
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-controls</artifactId>
|
|
<version>${javafx.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-fxml</artifactId>
|
|
<version>${javafx.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-web</artifactId>
|
|
<version>${javafx.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.controlsfx</groupId>
|
|
<artifactId>controlsfx</artifactId>
|
|
<version>11.2.0</version>
|
|
</dependency>
|
|
<!-- Caffeine Cache -->
|
|
<dependency>
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
<artifactId>caffeine</artifactId>
|
|
<version>3.1.8</version>
|
|
</dependency>
|
|
<!-- Spring Context Support for CaffeineCacheManager -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-commons</artifactId>
|
|
<version>3.3.7</version>
|
|
</dependency>
|
|
<!-- OkHttp -->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>4.12.0</version>
|
|
</dependency>
|
|
<!-- WebSocket for OkHttp -->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp-ws</artifactId>
|
|
<version>3.4.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>0.0.8</version>
|
|
<configuration>
|
|
<mainClass>com.ecep.contract.AppV2</mainClass>
|
|
<launcher>app</launcher>
|
|
<jlinkZipName>app-jlink</jlinkZipName>
|
|
<jlinkImageName>app-jlink-image</jlinkImageName>
|
|
<noManPages>true</noManPages>
|
|
<stripDebug>true</stripDebug>
|
|
<compress>2</compress>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
<version>2.16.2</version>
|
|
<executions>
|
|
<execution>
|
|
<inherited>true</inherited>
|
|
<id>increment-version</id>
|
|
<phase>install</phase>
|
|
<goals>
|
|
<goal>set</goal>
|
|
</goals>
|
|
<configuration>
|
|
<generateBackupPoms>false</generateBackupPoms>
|
|
<processAllModules>true</processAllModules>
|
|
<!-- <newVersion>${project.version}</newVersion> -->
|
|
<nextSnapshot>true</nextSnapshot>
|
|
<nextSnapshotIndexToIncrement>3</nextSnapshotIndexToIncrement>
|
|
<!-- <removeSnapshot>true</removeSnapshot>-->
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |