代码拉取完成,页面将自动刷新
同步操作将从 渔民小镇/ioGameExamples 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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>
<packaging>pom</packaging>
<groupId>com.iohao.example</groupId>
<artifactId>iogame-example</artifactId>
<version>3.0.0.io</version>
<name>ioGame-example</name>
<description>ioGame网络游戏服务器框架 - 示例</description>
<modules>
<!-- 示例 -->
<module>example/example-parent</module>
<module>example/example-run-one</module>
<module>example/example-for-spring</module>
<module>example/example-interaction</module>
<module>example/example-interaction-same</module>
<module>example/example-endpoint</module>
<module>example/example-for-tcp-socket</module>
<!-- <module>example/example-redisson-lock-spring-boot-starter</module>-->
<!-- <module>example/example-redisson-lock</module>-->
<module>example/example-cluster-run-one</module>
<module>example/example-broadcast</module>
<module>example/example-hook</module>
<module>example/example-wrapper-base-type</module>
<!-- 实践案例 - 通用部分 -->
<module>example-game-collect/game-common-proto</module>
<module>example-game-collect/game-common</module>
<!-- 对外服 -->
<module>example-game-collect/game-external</module>
<!-- 逻辑服 - 大厅 -->
<module>example-game-collect/game-logic-hall</module>
<!-- 逻辑服 - 坦克 -->
<module>example-game-collect/game-logic-tank</module>
<!-- 启动 对外服、网关、逻辑服 -->
<module>example-game-collect/game-one</module>
<!-- java 坦克游戏 fxgl -->
<module>example-game-collect/fxgl-tank</module>
<module>client-command</module>
<!-- springboot 集成示例 -->
<module>example-springboot/spring-game-logic-school</module>
<module>example-springboot/spring-game-external</module>
<module>example-springboot/spring-game-broker</module>
<module>example-springboot/spring-websocket-client</module>
<module>example-springboot/spring-common-pb</module>
<module>example-springboot/spring-z-one-game</module>
<module>example-springboot/spring-game-logic-classes</module>
<module>example-springboot/spring-game-logic-school-starter</module>
<module>example-springboot/spring-game-logic-classes-starter</module>
<module>example-springboot/spring-game-logic-hall</module>
<module>example-springboot/spring-game-logic-room-interaction-same</module>
<module>example-springboot/spring-websocket-native-pb-client</module>
<module>example-springboot/spring-game-logic-parent</module>
<module>example/example-meter</module>
<module>example/example-meter-login</module>
<module>example/example-jsr-jakarta</module>
<module>example/example-jsr-javax</module>
<module>example/example-codec-json</module>
</modules>
<!--统一管理版本 的一个父 pom-->
<properties>
<!-- 项目版本 -->
<ioGame.version>17.1.31</ioGame.version>
<!-- jdk 版本 -->
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<encoding>UTF-8</encoding>
<!-- lombok 消除冗长的 Java 代码 https://www.oschina.net/p/lombok https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<lombok.version>1.18.24</lombok.version>
<!-- redis internal : https://www.oschina.net/p/redisson https://mvnrepository.com/artifact/org.redisson/redisson -->
<redisson.version>3.17.3</redisson.version>
<!-- JSR380 bean 验证框架 https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator -->
<hibernate-validator.version>7.0.4.Final</hibernate-validator.version>
<!-- JSR380 https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api -->
<jakarta.validation-api.version>3.0.2</jakarta.validation-api.version>
<!-- JSR380 https://mvnrepository.com/artifact/org.glassfish/jakarta.el -->
<jakarta.el.version>4.0.2</jakarta.el.version>
<!-- Java 实体映射工具 https://mvnrepository.com/artifact/org.mapstruct/mapstruct https://mapstruct.org/documentation/reference-guide/ -->
<org.mapstruct.version>1.5.2.Final</org.mapstruct.version>
<!-- temp spring boot https://mvnrepository.com/artifact/org.springframework/spring-core -->
<spring.version>5.3.20</spring.version>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter -->
<springboot.version>2.7.0</springboot.version>
<!-- junit https://mvnrepository.com/artifact/junit/junit -->
<junit.version>4.13.2</junit.version>
<!-- 模拟客户端 https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket -->
<java-websocket.version>1.5.3</java-websocket.version>
<!-- 演示用的假数据 https://mvnrepository.com/artifact/com.github.javafaker/javafaker -->
<javafaker.version>1.0.2</javafaker.version>
<!-- slf4j https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<slf4j-api.version>1.7.36</slf4j-api.version>
<!-- slf4j https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
<logback.version>1.2.11</logback.version>
<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
<hutool.version>5.8.5</hutool.version>
<!-- Hazelcast提供弹性可扩展的分布式内存计算 https://mvnrepository.com/artifact/com.hazelcast/hazelcast -->
<hazelcast.version>5.1.1</hazelcast.version>
</properties>
<dependencies>
<!-- lombok 简化 java 代码 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<optional>true</optional>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${org.mapstruct.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.23</version>
</dependency>
<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.11</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
<!--dependencyManagement 标签用于控制子模块的依赖版本等信息,该标签只用来控制版本,不能将依赖引入 -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${springboot.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-clean-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<!--
编译插件
mvn compile
To compile your test sources, you'll do:
mvn test-compile
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<compilerVersion>${java.version}</compilerVersion>
<source>${java.version}</source>
<target>${java.version}</target>
<!-- maven 3.6.2及之后加上编译参数,可以让我们在运行期获取方法参数名称。 -->
<parameters>true</parameters>
<skip>true</skip>
<!-- JDK9+ with module-info.java -->
<annotationProcessorPaths>
<!-- 实体映射工具 -->
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${org.mapstruct.version}</version>
</path>
<!-- lombok 消除冗长的 Java 代码 -->
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<!-- additional annotation processor required as of Lombok 1.18.16 -->
<!-- mapStruct 支持 lombok -->
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<version>0.2.0</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<!-- 打包时跳过单元测试 https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<!-- 打包源码 https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。