|
@@ -11,10 +11,6 @@
|
|
|
|
|
|
|
|
<artifactId>game-back-serve</artifactId>
|
|
<artifactId>game-back-serve</artifactId>
|
|
|
|
|
|
|
|
- <properties>
|
|
|
|
|
- <maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
- <maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
- </properties>
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<artifactId>game-back-base</artifactId>
|
|
<artifactId>game-back-base</artifactId>
|
|
@@ -140,7 +136,7 @@
|
|
|
<!-- Mybatis Plus -->
|
|
<!-- Mybatis Plus -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>com.baomidou</groupId>
|
|
<groupId>com.baomidou</groupId>
|
|
|
- <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
|
|
+ <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
@@ -154,27 +150,41 @@
|
|
|
</dependency>
|
|
</dependency>
|
|
|
<!-- Mysql Connector -->
|
|
<!-- Mysql Connector -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
|
|
+ <groupId>com.mysql</groupId>
|
|
|
|
|
+ <artifactId>mysql-connector-j</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
|
|
- <build>
|
|
|
|
|
|
|
+ <build>
|
|
|
<plugins>
|
|
<plugins>
|
|
|
|
|
+ <!-- 不发布到 maven仓库 -->
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
|
+ <version>2.8.2</version>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <skip>true</skip>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
<plugin>
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <version>3.1</version>
|
|
|
|
|
|
|
+ <version>3.11.0</version>
|
|
|
<configuration>
|
|
<configuration>
|
|
|
- <source>8</source>
|
|
|
|
|
- <target>8</target>
|
|
|
|
|
|
|
+ <source>${java.version}</source>
|
|
|
|
|
+ <target>${java.version}</target>
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
|
+ <fork>true</fork> <!-- 必须设为 true,否则 compilerArgs 不生效 -->
|
|
|
|
|
+ <compilerArgs>
|
|
|
|
|
+ <!-- 将编译器的栈大小调整为 4M 或 8M (默认通常只有 1M) -->
|
|
|
|
|
+ <arg>-J-Xss4m</arg>
|
|
|
|
|
+ </compilerArgs>
|
|
|
</configuration>
|
|
</configuration>
|
|
|
</plugin>
|
|
</plugin>
|
|
|
<plugin>
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <version>2.5.14</version>
|
|
|
|
|
|
|
+ <version>${springboot.version}</version>
|
|
|
<configuration>
|
|
<configuration>
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
</configuration>
|
|
</configuration>
|
|
@@ -188,4 +198,5 @@
|
|
|
</plugin>
|
|
</plugin>
|
|
|
</plugins>
|
|
</plugins>
|
|
|
</build>
|
|
</build>
|
|
|
|
|
+
|
|
|
</project>
|
|
</project>
|