pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <artifactId>yudao</artifactId>
  9. <version>${revision}</version>
  10. <relativePath>../../pom.xml</relativePath>
  11. </parent>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. as模块,主要实现家庭困难认定、助学奖金等功能。
  16. </description>
  17. <artifactId>yudao-module-as-biz</artifactId>
  18. <properties>
  19. <maven.compiler.source>8</maven.compiler.source>
  20. <maven.compiler.target>8</maven.compiler.target>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. </properties>
  23. <dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
  24. <dependency>
  25. <groupId>cn.iocoder.boot</groupId>
  26. <artifactId>yudao-module-as-api</artifactId>
  27. <version>${revision}</version>
  28. </dependency>
  29. <!-- Web 相关 -->
  30. <dependency>
  31. <groupId>cn.iocoder.boot</groupId>
  32. <artifactId>yudao-spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.iocoder.boot</groupId>
  36. <artifactId>yudao-spring-boot-starter-security</artifactId>
  37. </dependency>
  38. <!-- DB 相关 -->
  39. <dependency>
  40. <groupId>cn.iocoder.boot</groupId>
  41. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  42. </dependency>
  43. <!-- Test 测试相关 -->
  44. <dependency>
  45. <groupId>cn.iocoder.boot</groupId>
  46. <artifactId>yudao-spring-boot-starter-test</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.iocoder.boot</groupId>
  50. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  51. </dependency>
  52. <!--biz模块依赖-->
  53. <dependency>
  54. <groupId>cn.iocoder.boot</groupId>
  55. <artifactId>yudao-module-system-biz</artifactId>
  56. <version>2.1.0-jdk8-snapshot</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-test</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>cn.iocoder.boot</groupId>
  65. <artifactId>yudao-module-system-biz</artifactId>
  66. <version>2.1.0-jdk8-snapshot</version>
  67. <scope>compile</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>cn.iocoder.boot</groupId>
  71. <artifactId>yudao-module-bpm-biz</artifactId>
  72. <version>2.1.0-jdk8-snapshot</version>
  73. <scope>compile</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>cn.iocoder.boot</groupId>
  77. <artifactId>yudao-module-bpm-biz</artifactId>
  78. <version>2.1.0-jdk8-snapshot</version>
  79. <scope>compile</scope>
  80. </dependency>
  81. </dependencies>
  82. </project>