Skip to content

Commit 379f77d

Browse files
committed
1.移除多余方法
1 parent 1f2e71d commit 379f77d

1 file changed

Lines changed: 26 additions & 26 deletions

File tree

pom.xml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<maven.test.skip>true</maven.test.skip>
1616
<maven.compiler.source>17</maven.compiler.source>
1717
<maven.compiler.target>17</maven.compiler.target>
18+
<javafx.version>17.0.2</javafx.version>
1819
</properties>
1920
<repositories>
2021
<repository>
@@ -30,26 +31,39 @@
3031
<dependency>
3132
<groupId>junit</groupId>
3233
<artifactId>junit</artifactId>
33-
<version>4.12</version>
34+
<version>4.13.2</version>
3435
<scope>test</scope>
3536
</dependency>
3637

38+
<dependency>
39+
<groupId>com.gitee.xwintop</groupId>
40+
<artifactId>xcore</artifactId>
41+
<version>0.0.7</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.projectlombok</groupId>
45+
<artifactId>lombok</artifactId>
46+
<version>1.18.22</version>
47+
<optional>true</optional>
48+
<scope>provided</scope>
49+
</dependency>
50+
3751
<dependency>
3852
<groupId>org.openjfx</groupId>
3953
<artifactId>javafx-graphics</artifactId>
40-
<version>17.0.2</version>
54+
<version>${javafx.version}</version>
4155
<classifier>win</classifier>
4256
</dependency>
4357
<dependency>
4458
<groupId>org.openjfx</groupId>
4559
<artifactId>javafx-graphics</artifactId>
46-
<version>17.0.2</version>
60+
<version>${javafx.version}</version>
4761
<classifier>linux</classifier>
4862
</dependency>
4963
<dependency>
5064
<groupId>org.openjfx</groupId>
5165
<artifactId>javafx-graphics</artifactId>
52-
<version>17.0.2</version>
66+
<version>${javafx.version}</version>
5367
<classifier>mac</classifier>
5468
</dependency>
5569

@@ -60,20 +74,6 @@
6074
<artifactId>classgraph</artifactId>
6175
<version>4.8.100</version>
6276
</dependency>
63-
64-
<dependency>
65-
<groupId>com.gitee.xwintop</groupId>
66-
<artifactId>xcore</artifactId>
67-
<version>0.0.7</version>
68-
</dependency>
69-
<dependency>
70-
<groupId>org.projectlombok</groupId>
71-
<artifactId>lombok</artifactId>
72-
<version>1.18.22</version>
73-
<optional>true</optional>
74-
<scope>provided</scope>
75-
</dependency>
76-
7777
</dependencies>
7878
<build>
7979
<plugins>
@@ -104,14 +104,14 @@
104104
</execution>
105105
</executions>
106106
</plugin>
107-
<!-- <plugin>-->
108-
<!-- <groupId>org.openjfx</groupId>-->
109-
<!-- <artifactId>javafx-maven-plugin</artifactId>-->
110-
<!-- <version>0.0.8</version>-->
111-
<!-- <configuration>-->
112-
<!-- <mainClass>com.xwintop.xJavaFxTool.XJavaFxToolMain</mainClass>-->
113-
<!-- </configuration>-->
114-
<!-- </plugin>-->
107+
<plugin>
108+
<groupId>org.openjfx</groupId>
109+
<artifactId>javafx-maven-plugin</artifactId>
110+
<version>0.0.8</version>
111+
<configuration>
112+
<mainClass>com.xwintop.xJavaFxTool.XJavaFxToolMain</mainClass>
113+
</configuration>
114+
</plugin>
115115
<!-- <plugin>-->
116116
<!-- <groupId>org.panteleyev</groupId>-->
117117
<!-- <artifactId>jpackage-maven-plugin</artifactId>-->

0 commit comments

Comments
 (0)