pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. <artifactId>lineage</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-app</artifactId>
  12. <description>
  13. app服务入口
  14. </description>
  15. <!--消息推送(个推)的私服仓库 没有私服仓库下载不了包-->
  16. <repositories>
  17. <repository>
  18. <id>getui-nexus</id>
  19. <url>http://mvn.gt.getui.com/nexus/content/repositories/releases/</url>
  20. </repository>
  21. </repositories>
  22. <dependencies>
  23. <!-- spring-boot-devtools -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-devtools</artifactId>
  27. <optional>true</optional> <!-- 表示依赖不会传递 -->
  28. </dependency>
  29. <dependency>
  30. <groupId>com.auth0</groupId>
  31. <artifactId>java-jwt</artifactId>
  32. <version>3.4.0</version>
  33. </dependency>
  34. <!-- Mysql驱动包 -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. </dependency>
  39. <!-- 核心模块-->
  40. <dependency>
  41. <groupId>com.ruoyi</groupId>
  42. <artifactId>ruoyi-framework</artifactId>
  43. </dependency>
  44. <!-- 定时任务-->
  45. <dependency>
  46. <groupId>com.ruoyi</groupId>
  47. <artifactId>ruoyi-quartz</artifactId>
  48. </dependency>
  49. <!-- 代码生成-->
  50. <dependency>
  51. <groupId>com.ruoyi</groupId>
  52. <artifactId>ruoyi-generator</artifactId>
  53. </dependency>
  54. <!-- 阿里云短信SDK -->
  55. <dependency>
  56. <groupId>com.aliyun</groupId>
  57. <artifactId>aliyun-java-sdk-core</artifactId>
  58. <version>4.1.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.aliyun</groupId>
  62. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  63. <version>1.1.0</version>
  64. </dependency>
  65. <!--微信支付-->
  66. <dependency>
  67. <groupId>com.github.javen205</groupId>
  68. <artifactId>IJPay-WxPay</artifactId>
  69. <version>2.7.0</version>
  70. </dependency>
  71. <!--支付宝支付-->
  72. <dependency>
  73. <groupId>com.github.javen205</groupId>
  74. <artifactId>IJPay-AliPay</artifactId>
  75. <version>2.7.0</version>
  76. </dependency>
  77. <!--消息推送(个推)-->
  78. <dependency>
  79. <groupId>com.gexin.platform</groupId>
  80. <artifactId>gexin-rp-sdk-http</artifactId>
  81. <version>4.1.1.4</version>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <version>2.1.1.RELEASE</version>
  90. <configuration>
  91. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  92. </configuration>
  93. <executions>
  94. <execution>
  95. <goals>
  96. <goal>repackage</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-war-plugin</artifactId>
  104. <version>3.1.0</version>
  105. <configuration>
  106. <failOnMissingWebXml>false</failOnMissingWebXml>
  107. <warName>${project.artifactId}</warName>
  108. </configuration>
  109. </plugin>
  110. </plugins>
  111. <finalName>${project.artifactId}</finalName>
  112. </build>
  113. </project>