123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <?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">
- <parent>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao</artifactId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>yudao-server</artifactId>
- <packaging>jar</packaging>
- <name>${project.artifactId}</name>
- <description>
- 后端 Server 的主项目,通过引入需要 yudao-module-xxx 的依赖,
- 从而实现提供 RESTful API 给 yudao-ui-admin、yudao-ui-user 等前端项目。
- 本质上来说,它就是个空壳(容器)!
- </description>
- <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
- <properties>
- <maven.plugin.version>3.8.1</maven.plugin.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-system-biz</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-infra-biz</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-contract-biz</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- 会员中心。默认注释,保证编译速度 -->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-member-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- 数据报表。默认注释,保证编译速度 -->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-report-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- 工作流。默认注释,保证编译速度 -->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-bpm-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- 支付服务。默认注释,保证编译速度 -->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-pay-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- 微信公众号模块。默认注释,保证编译速度 -->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-mp-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- 商城相关模块。默认注释,保证编译速度-->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-promotion-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-product-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-trade-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-statistics-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- CRM 相关模块。默认注释,保证编译速度 -->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-crm-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- ERP 相关模块。默认注释,保证编译速度 -->
- <!-- <dependency>-->
- <!-- <groupId>cn.iocoder.boot</groupId>-->
- <!-- <artifactId>yudao-module-erp-biz</artifactId>-->
- <!-- <version>${revision}</version>-->
- <!-- </dependency>-->
- <!-- spring boot 配置所需依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- 服务保障相关 -->
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-spring-boot-starter-protection</artifactId>
- </dependency>
- </dependencies>
- <build>
- <!-- 设置构建的 jar 包名 -->
- <finalName>${project.artifactId}</finalName>
- <plugins>
- <!-- 打包 -->
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring.boot.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <!-- <pluginManagement>-->
- <!-- <plugins>-->
- <!-- <plugin>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
- <!-- <version>2.7.11</version>-->
- <!-- <configuration>-->
- <!-- <executable>true</executable>-->
- <!-- <layout>ZIP</layout>-->
- <!-- <finalName>${project.build.finalName}</finalName>-->
- <!-- <includeSystemScope>true</includeSystemScope>-->
- <!-- <!–只包含自己–>-->
- <!-- <includes>-->
- <!-- <include>-->
- <!-- <groupId>${groupId}</groupId>-->
- <!-- <artifactId>${artifactId}</artifactId>-->
- <!-- </include>-->
- <!-- <!–或者–>-->
- <!-- <!–依赖jar不打进项目jar包中–>-->
- <!-- <!–<include>-->
- <!-- <groupId>nothing</groupId>-->
- <!-- <artifactId>nothing</artifactId>-->
- <!-- </include>–>-->
- <!-- </includes>-->
- <!-- <!–不包含哪些–>-->
- <!-- <!–<excludeGroupIds>–>-->
- <!-- <!–com.hundsun.jrescloud,–>-->
- <!-- <!–org.springframework.boot,–>-->
- <!-- <!–org.springframework–>-->
- <!-- <!–</excludeGroupIds>–>-->
- <!-- </configuration>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <goals>-->
- <!-- <goal>repackage</goal>-->
- <!-- </goals>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- </plugin>-->
- <!--<!– <plugin>–>-->
- <!--<!– <groupId>io.fabric8</groupId>–>-->
- <!--<!– <artifactId>docker-maven-plugin</artifactId>–>-->
- <!--<!– <version>${docker.fabric.version}</version>–>-->
- <!--<!– <configuration>–>-->
- <!--<!– <authConfig>–>-->
- <!--<!– <username>${docker.username}</username>–>-->
- <!--<!– <password>${docker.password}</password>–>-->
- <!--<!– </authConfig>–>-->
- <!--<!– <registry>${docker.registry.url}</registry>–>-->
- <!--<!– <images>–>-->
- <!--<!– <image>–>-->
- <!--<!– <name>${docker.namespace}/${project.build.finalName}:${project.version}</name>–>-->
- <!--<!– <alias>${project.name}</alias>–>-->
- <!--<!– <build>–>-->
- <!--<!– <dockerFile>${project.basedir}/Dockerfile</dockerFile>–>-->
- <!--<!– </build>–>-->
- <!--<!– </image>–>-->
- <!--<!– </images>–>-->
- <!--<!– <buildArgs>–>-->
- <!--<!– <JAR_FILE>${basedir}/target/${project.build.finalName}.jar</JAR_FILE>–>-->
- <!--<!– </buildArgs>–>-->
- <!--<!– </configuration>–>-->
- <!--<!– </plugin>–>-->
- <!-- </plugins>-->
- <!-- </pluginManagement>-->
- <!-- <plugins>-->
- <!-- <plugin>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
- <!-- </plugin>-->
- <!-- <plugin>-->
- <!-- <artifactId>maven-compiler-plugin</artifactId>-->
- <!-- <version>${maven.plugin.version}</version>-->
- <!-- <configuration>-->
- <!-- <source>${java.version}</source>-->
- <!-- <target>${java.version}</target>-->
- <!-- <encoding>UTF-8</encoding>-->
- <!-- <compilerArgs>-->
- <!-- <arg>-parameters</arg>-->
- <!-- </compilerArgs>-->
- <!-- </configuration>-->
- <!-- </plugin>-->
- <!-- <!–拷贝依赖到jar外面的lib目录–>-->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-dependency-plugin</artifactId>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <id>copy</id>-->
- <!-- <phase>package</phase>-->
- <!-- <goals>-->
- <!-- <goal>copy-dependencies</goal>-->
- <!-- </goals>-->
- <!-- <configuration> <!–指定的依赖路径–>-->
- <!-- <outputDirectory>-->
- <!-- ${project.build.directory}/lib-->
- <!-- </outputDirectory>-->
- <!-- </configuration>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- </plugin>-->
- <!-- </plugins>-->
- </build>
- </project>
|