代码拉取完成,页面将自动刷新
<?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.thd.springboot.framework</groupId>
<artifactId>com-thd-springboot-framework-parent</artifactId>
<packaging>pom</packaging>
<description>thd framework base springboot</description>
<modules>
<module>com-thd-springboot-framework-dependencies</module>
<module>com-thd-springboot-framework-basic</module>
<module>com-thd-springboot-framework-db</module>
<module>com-thd-springboot-framework-web</module>
<module>com-thd-springboot-framework-redis</module>
<module>com-thd-springboot-framework-generator</module>
<module>com-thd-springboot-framework-shiro</module>
<module>com-thd-springboot-framework-elasticsearch</module>
<module>com-thd-springboot-framework-rabbitmq</module>
<module>com-thd-springboot-framework-cloud</module>
<module>com-thd-springboot-framework-security</module>
</modules>
<version>1.0.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.encoding>utf-8</maven.compiler.encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<!-- Thd SpringBoot Framework version-->
<tsbf.tech.version>1.0.0-SNAPSHOT</tsbf.tech.version>
</properties>
<build>
<plugins>
<!-- 设置maven编译使用的jdk -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>${maven.compiler.encoding}</encoding>
</configuration>
</plugin>
<!-- 清理jar目录 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>jar</directory>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
<!-- 编译时打包源码到target -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<!-- 在maven的compile 阶段就开始打包 -->
<phase>compile</phase>
<goals>
<!-- 源码单独作为一个jar包 -->
<goal>jar</goal>
<!--源码打进jar包中 类似执行mvn source:jar -->
<!-- <goal>jar-no-fork</goal> -->
</goals>
</execution>
</executions>
</plugin>
<!-- 拷贝项目所依赖jar到 jar目录下 -->
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>jar</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。