mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-05-07 05:36:21 +08:00
597 lines
22 KiB
XML
597 lines
22 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ /*
|
|
~ * Copyright 2025 http://www.hswebframework.org
|
|
~ *
|
|
~ * Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ * you may not use this file except in compliance with the License.
|
|
~ * You may obtain a copy of the License at
|
|
~ *
|
|
~ * http://www.apache.org/licenses/LICENSE-2.0
|
|
~ *
|
|
~ * Unless required by applicable law or agreed to in writing, software
|
|
~ * distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ * See the License for the specific language governing permissions and
|
|
~ * limitations under the License.
|
|
~ */
|
|
-->
|
|
|
|
<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>org.hswebframework.web</groupId>
|
|
<artifactId>hsweb-framework</artifactId>
|
|
<version>5.0.1-SNAPSHOT</version>
|
|
<modules>
|
|
<module>hsweb-starter</module>
|
|
<module>hsweb-core</module>
|
|
<module>hsweb-authorization</module>
|
|
<module>hsweb-system</module>
|
|
<module>hsweb-datasource</module>
|
|
<module>hsweb-commons</module>
|
|
<module>hsweb-logging</module>
|
|
<module>hsweb-concurrent</module>
|
|
</modules>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>hsweb framework</name>
|
|
<url>https://github.com/hs-web</url>
|
|
<inceptionYear>2016</inceptionYear>
|
|
<description>hsweb (haʊs wɛb)
|
|
是一个用于快速搭建企业后台管理系统的基础项目,集成一揽子便捷功能如:通用增删改查,在线代码生成,权限管理(可控制到列和行),动态多数据源分布式事务,动态脚本,动态定时任务,在线数据库维护等等
|
|
</description>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>zhouhao</name>
|
|
<email>i@hsweb.me</email>
|
|
<roles>
|
|
<role>Owner</role>
|
|
</roles>
|
|
<timezone>+8</timezone>
|
|
<url>https://github.com/zhou-hao</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/hs-web/hsweb-framework.git</connection>
|
|
<developerConnection>scm:git:https://github.com/hs-web/hsweb-framework.git</developerConnection>
|
|
<url>https://github.com/hs-web/hsweb-framework</url>
|
|
<tag>${project.version}</tag>
|
|
</scm>
|
|
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.locales>zh_CN</project.build.locales>
|
|
|
|
<java.version>17</java.version>
|
|
<java.module.version>17</java.module.version>
|
|
<project.build.jdk>${java.version}</project.build.jdk>
|
|
|
|
<spring.boot.version>3.4.0</spring.boot.version>
|
|
|
|
<javassist.version>3.30.1-GA</javassist.version>
|
|
|
|
<fastjson.version>1.2.83</fastjson.version>
|
|
<h2.version>2.3.232</h2.version>
|
|
<mysql.version>5.1.39</mysql.version>
|
|
<cglib.version>3.2.2</cglib.version>
|
|
<aspectj.version>1.6.12</aspectj.version>
|
|
|
|
<hsweb.ezorm.version>4.2.0</hsweb.ezorm.version>
|
|
<hsweb.utils.version>3.0.4</hsweb.utils.version>
|
|
<hsweb.expands.version>3.0.2</hsweb.expands.version>
|
|
<swagger.version>2.7.0</swagger.version>
|
|
|
|
<r2dbc.version>Borca-SR2</r2dbc.version>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.sonatype.central</groupId>
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
<version>0.8.0</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<publishingServerId>central</publishingServerId>
|
|
<autoPublish>true</autoPublish>
|
|
<waitUntil>validated</waitUntil>
|
|
<deploymentName>hsweb-framework:${project.version}</deploymentName>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>1.5</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.9.1</version>
|
|
<configuration>
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>central</id>
|
|
<name>Central Snapshot Repository</name>
|
|
<url>https://central.sonatype.com/repository/maven-snapshots</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</profile>
|
|
</profiles>
|
|
<build>
|
|
|
|
<plugins>
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.moditect</groupId>-->
|
|
<!-- <artifactId>moditect-maven-plugin</artifactId>-->
|
|
<!-- <version>1.1.0</version>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>add-module-infos</id>-->
|
|
<!-- <phase>package</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>add-module-info</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <jvmVersion>${java.module.version}</jvmVersion>-->
|
|
<!-- <jdepsExtraArgs>-->
|
|
<!-- <arg>--multi-release=${java.module.version}</arg>-->
|
|
<!-- </jdepsExtraArgs>-->
|
|
<!-- <failOnWarning>false</failOnWarning>-->
|
|
<!-- <outputTimestamp>${maven.build.timestamp}</outputTimestamp>-->
|
|
<!-- <module>-->
|
|
<!-- <moduleInfoFile>${project.basedir}/src/main/java9/module-info.java</moduleInfoFile>-->
|
|
<!-- </module>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<version>0.8.11</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>prepare-agent</goal>
|
|
</goals>
|
|
<configuration>
|
|
<propertyName>jacocoArgLine</propertyName>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>report</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>report</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
<Multi-Release>true</Multi-Release>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-scm-plugin</artifactId>
|
|
<version>1.8.1</version>
|
|
<configuration>
|
|
<connectionType>connection</connectionType>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.12.0</version>
|
|
<configuration>
|
|
<source>${project.build.jdk}</source>
|
|
<target>${project.build.jdk}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
<compilerArgs>
|
|
<arg>-parameters</arg>
|
|
</compilerArgs>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.30</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>compile-java-8</id>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>compile</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <source>1.8</source>-->
|
|
<!-- <target>1.8</target>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>compile-java-9</id>-->
|
|
<!-- <phase>compile</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>compile</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <release>9</release>-->
|
|
<!-- <compileSourceRoots>-->
|
|
<!-- <compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot>-->
|
|
<!-- </compileSourceRoots>-->
|
|
<!-- <outputDirectory>${project.build.outputDirectory}/META-INF/versions/9</outputDirectory>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.0</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*Test.java</include>
|
|
<include>**/*Tests.java</include>
|
|
</includes>
|
|
<argLine>-Dfile.encoding=UTF-8 ${jacocoArgLine}</argLine>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.projectlombok</groupId>-->
|
|
<!-- <artifactId>lombok-maven-plugin</artifactId>-->
|
|
<!-- <version>1.18.20.0</version>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <phase>generate-sources</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>delombok</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-indexer</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.projectreactor</groupId>
|
|
<artifactId>reactor-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.data</groupId>-->
|
|
<!-- <artifactId>spring-data-r2dbc</artifactId>-->
|
|
<!-- <version>1.1.3.RELEASE</version>-->
|
|
<!-- <scope>compile</scope>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-data-r2dbc</artifactId>-->
|
|
<!-- <version>2.3.3.RELEASE</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
<version>3.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.asyncer</groupId>
|
|
<artifactId>r2dbc-mysql</artifactId>
|
|
<version>1.4.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>r2dbc-postgresql</artifactId>
|
|
<version>1.0.7.RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.r2dbc</groupId>
|
|
<artifactId>r2dbc-h2</artifactId>
|
|
<version>1.0.0.RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.r2dbc</groupId>
|
|
<artifactId>r2dbc-spi</artifactId>
|
|
<version>1.0.0.RELEASE</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.hibernate.javax.persistence</groupId>
|
|
<artifactId>hibernate-jpa-2.1-api</artifactId>
|
|
<version>1.0.2.Final</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>32.0.0-jre</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.vavr</groupId>
|
|
<artifactId>vavr</artifactId>
|
|
<version>0.9.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.30</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jool-java-8</artifactId>
|
|
<version>0.9.13</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>${h2.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>1.5.10</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>2.1.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>1.11.0</version>
|
|
<!-- <exclusions>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>commons-collections</groupId>-->
|
|
<!-- <artifactId>commons-collections</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusions>-->
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
<version>4.4</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>
|
|
|
|
<dependency>
|
|
<groupId>org.hswebframework</groupId>
|
|
<artifactId>hsweb-easy-orm-rdb</artifactId>
|
|
<version>${hsweb.ezorm.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hswebframework</groupId>
|
|
<artifactId>hsweb-easy-orm-core</artifactId>
|
|
<version>${hsweb.ezorm.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hswebframework</groupId>
|
|
<artifactId>hsweb-easy-orm-elasticsearch</artifactId>
|
|
<version>${hsweb.ezorm.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hswebframework</groupId>
|
|
<artifactId>hsweb-expands</artifactId>
|
|
<version>${hsweb.expands.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-expression</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hswebframework</groupId>
|
|
<artifactId>hsweb-utils</artifactId>
|
|
<version>${hsweb.utils.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>aliyun-nexus</id>
|
|
<name>aliyun</name>
|
|
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>hsweb-nexus</id>
|
|
<name>Nexus Release Repository</name>
|
|
<url>https://nexus.jetlinks.cn/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>
|
|
always
|
|
</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>snapshots</id>
|
|
<name>Nexus Snapshot Repository</name>
|
|
<url>https://nexus.jetlinks.cn/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>aliyun-nexus</id>
|
|
<name>aliyun</name>
|
|
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|