1 Star 1 Fork 0

Pluto/leo-fxgl-parent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 5.93 KB
一键复制 编辑 原始数据 按行查看 历史
Pluto 提交于 2024-01-12 17:34 +08:00 . + fxgl-开发客户端
<?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>
<groupId>com.leo</groupId>
<artifactId>leo-fxgl-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>leo-0001-fxgl-hello</module>
<module>leo-0002-tank-game</module>
<module>leo-0003-fxgl-basic-class</module>
<module>leo-0004-cutscene</module>
<module>leo-0005-entity</module>
<module>leo-0006-picture</module>
<module>leo-0007-component</module>
<module>leo-0008-sprite-animation</module>
<module>leo-0009-archery-game</module>
<module>leo-0010-lanuage</module>
<module>leo-0011-fxgl-json</module>
<module>leo-0012-fxgl-cache</module>
<module>leo-0013-dialog</module>
<module>leo-0014-subscene</module>
<module>leo-0015-find-game</module>
<module>leo-0016-map</module>
<module>leo-0017-scroll-map</module>
<module>leo-0018-tank</module>
<module>leo-0019-tank2</module>
<module>leo-0020-client</module>
</modules>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.9.2</junit.version>
<javafx.version>21.0.1</javafx.version>
<fxgl.version>21</fxgl.version>
<atlantafx.version>2.0.1</atlantafx.version>
<ikonli.version>12.3.1</ikonli.version>
<logback-classic.version>1.4.14</logback-classic.version>
<lombok.version>1.18.30</lombok.version>
<controlsfx.version>11.2.0</controlsfx.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.almasb</groupId>
<artifactId>fxgl</artifactId>
<version>${fxgl.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!--样式-->
<dependency>
<groupId>io.github.mkpaz</groupId>
<artifactId>atlantafx-base</artifactId>
<version>${atlantafx.version}</version>
<exclusions>
<exclusion>
<artifactId>javafx-controls</artifactId>
<groupId>org.openjfx</groupId>
</exclusion>
</exclusions>
</dependency>
<!--图标库依赖-->
<dependency>
<groupId>org.kordamp.ikonli</groupId>
<artifactId>ikonli-javafx</artifactId>
<version>${ikonli.version}</version>
</dependency>
<dependency>
<groupId>org.kordamp.ikonli</groupId>
<artifactId>ikonli-antdesignicons-pack</artifactId>
<version>${ikonli.version}</version>
</dependency>
<dependency>
<groupId>org.kordamp.ikonli</groupId>
<artifactId>ikonli-bootstrapicons-pack</artifactId>
<version>${ikonli.version}</version>
</dependency>
<!--日志-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback-classic.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>org.controlsfx</groupId>
<artifactId>controlsfx</artifactId>
<version>${controlsfx.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>${maven.compiler.target}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<executions>
<execution>
<!-- Default configuration for running with: mvn clean javafx:run -->
<id>default-cli</id>
<configuration>
<mainClass>com.example.demo/com.example.demo.HelloApplication</mainClass>
<launcher>app</launcher>
<jlinkZipName>app</jlinkZipName>
<jlinkImageName>app</jlinkImageName>
<noManPages>true</noManPages>
<stripDebug>true</stripDebug>
<noHeaderFiles>true</noHeaderFiles>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangss3/leo-fxgl-parent.git
git@gitee.com:wangss3/leo-fxgl-parent.git
wangss3
leo-fxgl-parent
leo-fxgl-parent
master

搜索帮助