1 Star 5 Fork 5

dblcheng/chenfei-javafx-css

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.88 KB
一键复制 编辑 原始数据 按行查看 历史
lichenfei 提交于 2022-06-30 17:44 . 修改
<?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>cn.chenfei.jfx.css</groupId>
<artifactId>chenfei.javafx.css</artifactId>
<version>2022.06</version>
<name>chenfei.javafx.css</name>
<properties>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<openjfx.version>17.0.2</openjfx.version>
<kordamp.ikonli.version>12.3.0</kordamp.ikonli.version>
</properties>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${openjfx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>${openjfx.version}</version>
</dependency>
<!-- 图标库 -->
<dependency>
<groupId>org.kordamp.ikonli</groupId>
<artifactId>ikonli-javafx</artifactId>
<version>${kordamp.ikonli.version}</version>
</dependency>
<!--
https://kordamp.org/ikonli/
https://kordamp.org/ikonli/cheat-sheet-antdesignicons.html
-->
<dependency>
<groupId>org.kordamp.ikonli</groupId>
<artifactId>ikonli-antdesignicons-pack</artifactId>
<version>${kordamp.ikonli.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.7</version>
<configuration>
<stripDebug>true</stripDebug>
<compress>2</compress>
<noHeaderFiles>true</noHeaderFiles>
<noManPages>true</noManPages>
<launcher>cfApp</launcher>
<jlinkImageName>cfAppImage</jlinkImageName>
<jlinkZipName>cfAppZip</jlinkZipName>
<mainClass>cn.chenfei.jfx.css.App</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/icc456/chenfei-javafx-css.git
git@gitee.com:icc456/chenfei-javafx-css.git
icc456
chenfei-javafx-css
chenfei-javafx-css
master

搜索帮助