pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~
  4. ~ Copyright (c) 2018-2025, scis All rights reserved.
  5. ~
  6. ~ Redistribution and use in source and binary forms, with or without
  7. ~ modification, are permitted provided that the following conditions are met:
  8. ~
  9. ~ Redistributions of source code must retain the above copyright notice,
  10. ~ this list of conditions and the following disclaimer.
  11. ~ Redistributions in binary form must reproduce the above copyright
  12. ~ notice, this list of conditions and the following disclaimer in the
  13. ~ documentation and/or other materials provided with the distribution.
  14. ~ Neither the name of the pig4cloud.com developer nor the names of its
  15. ~ contributors may be used to endorse or promote products derived from
  16. ~ this software without specific prior written permission.
  17. ~ Author: scis
  18. ~
  19. -->
  20. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>com.jmcloud</groupId>
  25. <artifactId>scis-invtory</artifactId>
  26. <version>3.10.0</version>
  27. </parent>
  28. <artifactId>scis-invtory-biz</artifactId>
  29. <packaging>jar</packaging>
  30. <description>scis 通用用户权限管理系统业务处理模块</description>
  31. <dependencies>
  32. <!--upms api、model 模块-->
  33. <dependency>
  34. <groupId>com.jmcloud</groupId>
  35. <artifactId>scis-invtory-api</artifactId>
  36. </dependency>
  37. <!--日志处理-->
  38. <dependency>
  39. <groupId>com.jmcloud</groupId>
  40. <artifactId>scis-common-log</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.jmcloud</groupId>
  44. <artifactId>scis-common-data</artifactId>
  45. </dependency>
  46. <!--swagger-->
  47. <dependency>
  48. <groupId>com.jmcloud</groupId>
  49. <artifactId>scis-common-swagger</artifactId>
  50. </dependency>
  51. <!--文件系统-->
  52. <dependency>
  53. <groupId>com.jmcloud</groupId>
  54. <artifactId>scis-common-oss</artifactId>
  55. </dependency>
  56. <!--注册中心客户端-->
  57. <dependency>
  58. <groupId>com.alibaba.cloud</groupId>
  59. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  60. </dependency>
  61. <!--配置中心客户端-->
  62. <dependency>
  63. <groupId>com.alibaba.cloud</groupId>
  64. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  65. </dependency>
  66. <!--spring security 、oauth、jwt依赖-->
  67. <dependency>
  68. <groupId>com.jmcloud</groupId>
  69. <artifactId>scis-common-security</artifactId>
  70. </dependency>
  71. <!--支持动态路由配置 -->
  72. <dependency>
  73. <groupId>com.jmcloud</groupId>
  74. <artifactId>scis-common-gateway</artifactId>
  75. </dependency>
  76. <!--sentinel 依赖-->
  77. <dependency>
  78. <groupId>com.jmcloud</groupId>
  79. <artifactId>scis-common-sentinel</artifactId>
  80. </dependency>
  81. <!--路由控制-->
  82. <dependency>
  83. <groupId>com.jmcloud</groupId>
  84. <artifactId>scis-common-gray</artifactId>
  85. </dependency>
  86. <!--mybatis-->
  87. <dependency>
  88. <groupId>com.baomidou</groupId>
  89. <artifactId>mybatis-plus-boot-starter</artifactId>
  90. </dependency>
  91. <!-- druid 连接池 -->
  92. <dependency>
  93. <groupId>com.alibaba</groupId>
  94. <artifactId>druid-spring-boot-starter</artifactId>
  95. </dependency>
  96. <!--数据库-->
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. </dependency>
  101. <!--web 模块-->
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-web</artifactId>
  105. </dependency>
  106. <!--undertow容器-->
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-undertow</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.jmcloud</groupId>
  113. <artifactId>scis-common-sequence</artifactId>
  114. </dependency>
  115. </dependencies>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-maven-plugin</artifactId>
  121. </plugin>
  122. <plugin>
  123. <groupId>io.fabric8</groupId>
  124. <artifactId>docker-maven-plugin</artifactId>
  125. <configuration>
  126. <skip>false</skip>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>