pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>cn.iocoder.boot</groupId>
  7. <artifactId>yudao</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>fdy-server</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. 后端 Server 的主项目,通过引入需要 yudao-module-xxx 的依赖,
  16. 从而实现提供 RESTful API 给 yudao-ui-admin、yudao-ui-user 等前端项目。
  17. 本质上来说,它就是个空壳(容器)!
  18. </description>
  19. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.iocoder.boot</groupId>
  23. <artifactId>yudao-module-system-biz</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.iocoder.boot</groupId>
  28. <artifactId>yudao-module-infra-biz</artifactId>
  29. <version>${revision}</version>
  30. </dependency>
  31. <!-- 工作流。默认注释,保证编译速度 -->
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-module-bpm-biz</artifactId>
  35. <version>${revision}</version>
  36. </dependency>
  37. <!-- 助学模块。默认注释,保证编译速度 -->
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-module-as-biz</artifactId>
  41. <version>${revision}</version>
  42. </dependency>
  43. <!-- spring boot 配置所需依赖 -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-configuration-processor</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <!-- 服务保障相关 -->
  50. <dependency>
  51. <groupId>cn.iocoder.boot</groupId>
  52. <artifactId>yudao-spring-boot-starter-protection</artifactId>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <!-- 设置构建的 jar 包名 -->
  57. <finalName>${project.artifactId}</finalName>
  58. <plugins>
  59. <!-- 打包 -->
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <version>${spring.boot.version}</version>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>