调整到可以正常打包

This commit is contained in:
杨朝晖
2021-01-10 14:00:55 +08:00
parent a5eb082efa
commit 6fa352c50b
4 changed files with 22 additions and 12 deletions

View File

@@ -8,7 +8,6 @@
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>falsework-client</artifactId>
<properties>
@@ -16,6 +15,8 @@
<maven.compiler.target>8</maven.compiler.target>
<feign.version>10.9</feign.version>
<java.version>1.8</java.version>
<datafx.version>8.0.2</datafx.version>
<jfoenix.version>8.0.10</jfoenix.version>
</properties>
@@ -34,21 +35,21 @@
<artifactId>jfoenix</artifactId>
<version>${jfoenix.version}</version>
<scope>system</scope>
<systemPath>${basedir}/libs/jfoenix-8.0.10.jar</systemPath>
<systemPath>${pom.basedir}/libs/jfoenix-8.0.10.jar</systemPath>
</dependency>
<dependency>
<groupId>datafx-flow</groupId>
<artifactId>datafx-flow</artifactId>
<version>${datafx.version}</version>
<scope>system</scope>
<systemPath>${basedir}/libs/datafx-flow-8.0.2-SNAPSHOT.jar</systemPath>
<systemPath>${pom.basedir}/libs/datafx-flow-8.0.2-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>tilesfx</groupId>
<artifactId>tilesfx</artifactId>
<version>1.6.8</version>
<scope>system</scope>
<systemPath>${basedir}/libs/tilesfx-1.6.8.jar</systemPath>
<systemPath>${pom.basedir}/libs/tilesfx-1.6.8.jar</systemPath>
</dependency>
<dependency>
@@ -56,21 +57,21 @@
<artifactId>datafx-injection</artifactId>
<version>${datafx.version}</version>
<scope>system</scope>
<systemPath>${basedir}/libs/datafx-injection-8.0.2-SNAPSHOT.jar</systemPath>
<systemPath>${pom.basedir}/libs/datafx-injection-8.0.2-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>datafx-eventsystem</groupId>
<artifactId>datafx-eventsystem</artifactId>
<version>${datafx.version}</version>
<scope>system</scope>
<systemPath>${basedir}/libs/datafx-eventsystem-8.0.2-SNAPSHOT.jar</systemPath>
<systemPath>${pom.basedir}/libs/datafx-eventsystem-8.0.2-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>datafx-core</groupId>
<artifactId>datafx-core</artifactId>
<version>${datafx.version}</version>
<scope>system</scope>
<systemPath>${basedir}/libs/datafx-core-8.0.2-SNAPSHOT.jar</systemPath>
<systemPath>${pom.basedir}/libs/datafx-core-8.0.2-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>javax.inject</groupId>

View File

@@ -1,4 +1,3 @@
import com.epri.fx.server.vo.UserVO;
import javafx.application.Application;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.ListProperty;