mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 10:36:31 +08:00
177 lines
6.8 KiB
XML
177 lines
6.8 KiB
XML
<?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.orangeforms</groupId>
|
|
<artifactId>OrangeFormsOpen</artifactId>
|
|
<version>1.0.0</version>
|
|
<name>OrangeFormsOpen</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<spring-boot.version>3.1.6</spring-boot.version>
|
|
<spring-boot-admin.version>3.1.6</spring-boot-admin.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<java.version>17</java.version>
|
|
<application.name>OrangeFormsOpen</application.name>
|
|
<!-- 工具库版本 -->
|
|
<joda-time.version>2.10.13</joda-time.version>
|
|
<guava.version>20.0</guava.version>
|
|
<commons-io.version>2.6</commons-io.version>
|
|
<commons-collections4.version>4.4</commons-collections4.version>
|
|
<common-csv.version>1.8</common-csv.version>
|
|
<httpclient5.version>5.2.2</httpclient5.version>
|
|
<poi-ooxml.version>5.0.0</poi-ooxml.version>
|
|
<hutool.version>5.8.23</hutool.version>
|
|
<jjwt.version>0.12.3</jjwt.version>
|
|
<fastjson.version>1.2.83</fastjson.version>
|
|
<bean.query.version>1.1.5</bean.query.version>
|
|
<caffeine.version>2.9.3</caffeine.version>
|
|
<lombok.version>1.18.20</lombok.version>
|
|
<hibernate-validator.version>8.0.1.Final</hibernate-validator.version>
|
|
<flowable.version>7.0.1</flowable.version>
|
|
<redisson.version>3.15.4</redisson.version>
|
|
<minio.version>8.4.5</minio.version>
|
|
<qdox.version>2.0.0</qdox.version>
|
|
<knife4j.version>4.5.0</knife4j.version>
|
|
<!-- 数据库工具版本 -->
|
|
<druid.version>1.2.16</druid.version>
|
|
<mybatisflex.version>1.7.7</mybatisflex.version>
|
|
<pagehelper.version>5.3.3</pagehelper.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>application-webadmin</module>
|
|
<module>common</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<!--web 模块-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<!-- 日志模块 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
</dependency>
|
|
<!-- aop模块 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
<!-- 缓存模块 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
</dependency>
|
|
<!--配置文件处理器-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!--加密-->
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-crypto</artifactId>
|
|
</dependency>
|
|
<!--监控-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<!--监控客户端-->
|
|
<dependency>
|
|
<groupId>de.codecentric</groupId>
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
<version>${spring-boot-admin.version}</version>
|
|
</dependency>
|
|
<!-- api参数验证 -->
|
|
<dependency>
|
|
<groupId>org.hibernate.validator</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<version>${hibernate-validator.version}</version>
|
|
</dependency>
|
|
<!--Lombok-->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!--测试依赖-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.22</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<include>**/*.*</include>
|
|
</includes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<compilerArgs>
|
|
<arg>-parameters</arg>
|
|
</compilerArgs>
|
|
<target>${maven.compiler.target}</target>
|
|
<source>${maven.compiler.source}</source>
|
|
<encoding>UTF-8</encoding>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</path>
|
|
<path>
|
|
<groupId>com.mybatis-flex</groupId>
|
|
<artifactId>mybatis-flex-processor</artifactId>
|
|
<version>${mybatisflex.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|