pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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>eladmin</artifactId>
  7. <groupId>me.zhengjie</groupId>
  8. <version>2.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>eladmin-system</artifactId>
  12. <name>核心模块</name>
  13. <properties>
  14. <jjwt.version>0.11.1</jjwt.version>
  15. <!-- oshi监控需要指定jna版本, 问题详见 https://github.com/oshi/oshi/issues/1040 -->
  16. <jna.version>5.8.0</jna.version>
  17. </properties>
  18. <dependencies>
  19. <!-- 代码生成模块 -->
  20. <dependency>
  21. <groupId>me.zhengjie</groupId>
  22. <artifactId>eladmin-generator</artifactId>
  23. <version>2.6</version>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>me.zhengjie</groupId>
  27. <artifactId>eladmin-common</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!-- rabbitmq -->
  32. <dependency>
  33. <groupId>com.rabbitmq</groupId>
  34. <artifactId>amqp-client</artifactId>
  35. <version>3.4.1</version>
  36. </dependency>
  37. <!-- rocketMq -->
  38. <dependency>
  39. <groupId>org.apache.rocketmq</groupId>
  40. <artifactId>rocketmq-spring-boot-starter</artifactId>
  41. <version>2.1.1</version>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter</artifactId>
  46. </exclusion>
  47. <exclusion>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-core</artifactId>
  50. </exclusion>
  51. <exclusion>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-webmvc</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <!-- tools 模块包含了 common 和 logging 模块 -->
  58. <dependency>
  59. <groupId>me.zhengjie</groupId>
  60. <artifactId>eladmin-tools</artifactId>
  61. <version>2.6</version>
  62. </dependency>
  63. <!-- Spring boot websocket -->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-websocket</artifactId>
  67. </dependency>
  68. <!-- jwt -->
  69. <dependency>
  70. <groupId>io.jsonwebtoken</groupId>
  71. <artifactId>jjwt-api</artifactId>
  72. <version>${jjwt.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.jsonwebtoken</groupId>
  76. <artifactId>jjwt-impl</artifactId>
  77. <version>${jjwt.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.jsonwebtoken</groupId>
  81. <artifactId>jjwt-jackson</artifactId>
  82. <version>${jjwt.version}</version>
  83. </dependency>
  84. <!-- quartz -->
  85. <dependency>
  86. <groupId>org.quartz-scheduler</groupId>
  87. <artifactId>quartz</artifactId>
  88. </dependency>
  89. <!-- linux的管理 -->
  90. <dependency>
  91. <groupId>ch.ethz.ganymed</groupId>
  92. <artifactId>ganymed-ssh2</artifactId>
  93. <version>build210</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.jcraft</groupId>
  97. <artifactId>jsch</artifactId>
  98. <version>0.1.55</version>
  99. </dependency>
  100. <!-- 获取系统信息 -->
  101. <dependency>
  102. <groupId>com.github.oshi</groupId>
  103. <artifactId>oshi-core</artifactId>
  104. <version>5.7.1</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.rabbitmq</groupId>
  108. <artifactId>amqp-client</artifactId>
  109. </dependency>
  110. <!-- sqlserver -->
  111. <dependency>
  112. <groupId>com.microsoft.sqlserver</groupId>
  113. <artifactId>mssql-jdbc</artifactId>
  114. <scope>runtime</scope>
  115. </dependency>
  116. </dependencies>
  117. <!-- 打包 -->
  118. <build>
  119. <finalName>ykt</finalName>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. </plugin>
  125. <!-- 跳过单元测试 -->
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-surefire-plugin</artifactId>
  129. <configuration>
  130. <skipTests>true</skipTests>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>