1 Star 0 Fork 0

王大宸/fly-code-fast

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 8.42 KB
一键复制 编辑 原始数据 按行查看 历史
王大宸 提交于 2025-03-10 21:34 +08:00 . 00.00
<?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.github.itdachen</groupId>
<artifactId>fly-code-fast</artifactId>
<name>fly-code-fast</name>
<version>0.0.1</version>
<packaging>jar</packaging>
<description>代码生成工具</description>
<properties>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<fly.dependencies.version>1.1.0-RC</fly.dependencies.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.itdachen</groupId>
<artifactId>fly-dependencies</artifactId>
<version>${fly.dependencies.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- 启动日志打印模块放在最前面, spring-boot-starter 使用的是 logback-classic 日志,
跟系统配置日志框架会冲突 -->
<dependency>
<groupId>com.github.itdachen</groupId>
<artifactId>runner-spring-boot-starter</artifactId>
</dependency>
<!-- 全局统一响应 -->
<dependency>
<groupId>com.github.itdachen</groupId>
<artifactId>body-advice-boot-starter</artifactId>
</dependency>
<!-- 数据库加密模块 -->
<!-- <dependency>-->
<!-- <groupId>com.github.itdachen</groupId>-->
<!-- <artifactId>datasource-spring-boot-starter</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-3-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- mysql -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>tk.mybatis</groupId>-->
<!-- <artifactId>mapper-spring-boot-starter</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
</dependency>
<!-- 生成数据库表设计 -->
<dependency>
<groupId>cn.smallbun.screw</groupId>
<artifactId>screw-core</artifactId>
<version>1.0.5</version>
<!-- 排除自带日志打印, 与系统框架冲突 -->
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- io 代码生成器输出流 -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-assembly-plugin</artifactId>-->
<!-- <version>3.4.2</version>-->
<!-- <configuration>-->
<!-- &lt;!&ndash; 打包后的包名是否包含assembly的id名 &ndash;&gt;-->
<!-- <appendAssemblyId>false</appendAssemblyId>-->
<!-- &lt;!&ndash; 指定最后tar或者zip包的名字 &ndash;&gt;-->
<!-- <finalName>${project.artifactId}</finalName>-->
<!-- &lt;!&ndash; tar或者zip包的输出目录 &ndash;&gt;-->
<!-- &lt;!&ndash; 是指当前项目的根目录 ,例如:F:\pvpsddp\pvpsddp-gateway 的上一级&ndash;&gt;-->
<!-- <outputDirectory>E:\package\hubu</outputDirectory>-->
<!-- <descriptors>-->
<!-- &lt;!&ndash; assembly配置文件位置 &ndash;&gt;-->
<!-- <descriptor>src/main/resources/assembly.xml</descriptor>-->
<!-- </descriptors>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>make-assembly</id>-->
<!-- <phase>package</phase>-->
<!-- <goals>-->
<!-- <goal>single</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- 解决加载不了字体文件 -->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-resources-plugin</artifactId>-->
<!-- <version>3.3.0</version>-->
<!-- <configuration>-->
<!-- <nonFilteredFileExtensions>-->
<!-- <nonFilteredFileExtension>woff</nonFilteredFileExtension>-->
<!-- <nonFilteredFileExtension>woff2</nonFilteredFileExtension>-->
<!-- <nonFilteredFileExtension>eot</nonFilteredFileExtension>-->
<!-- <nonFilteredFileExtension>ttf</nonFilteredFileExtension>-->
<!-- <nonFilteredFileExtension>svg</nonFilteredFileExtension>-->
<!-- </nonFilteredFileExtensions>-->
<!-- </configuration>-->
<!-- </plugin>-->
<!-- 打包发布时,跳过单元测试 -->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-surefire-plugin</artifactId>-->
<!-- <version>2.22.2</version>-->
<!-- <configuration>-->
<!-- <skipTests>true</skipTests>-->
<!-- </configuration>-->
<!-- </plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<parameters>true</parameters>
<compilerArgs>
<!-- 解决 MyBatis 多参数需要 @Param 注解问题 -->
<arg>-parameters</arg>
</compilerArgs>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/itdachen/fly-code-fast.git
git@gitee.com:itdachen/fly-code-fast.git
itdachen
fly-code-fast
fly-code-fast
master

搜索帮助