pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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.6.0</jna.version>
  17. </properties>
  18. <dependencies>
  19. <!-- rabbitmq -->
  20. <!-- <dependency>-->
  21. <!-- <groupId>com.rabbitmq</groupId>-->
  22. <!-- <artifactId>amqp-client</artifactId>-->
  23. <!-- <version>3.4.1</version>-->
  24. <!-- </dependency>-->
  25. <!-- 代码生成模块 -->
  26. <dependency>
  27. <groupId>me.zhengjie</groupId>
  28. <artifactId>eladmin-generator</artifactId>
  29. <version>2.6</version>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>me.zhengjie</groupId>
  33. <artifactId>eladmin-common</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-amqp</artifactId>
  40. </dependency>
  41. <!-- tools 模块包含了 common 和 logging 模块 -->
  42. <dependency>
  43. <groupId>me.zhengjie</groupId>
  44. <artifactId>eladmin-tools</artifactId>
  45. <version>2.6</version>
  46. </dependency>
  47. <!-- activiti工作流模块 -->
  48. <dependency>
  49. <groupId>me.zhengjie</groupId>
  50. <artifactId>eladmin-activity</artifactId>
  51. <version>2.6</version>
  52. </dependency>
  53. <!-- Spring boot websocket -->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-websocket</artifactId>
  57. </dependency>
  58. <!-- jwt -->
  59. <dependency>
  60. <groupId>io.jsonwebtoken</groupId>
  61. <artifactId>jjwt-api</artifactId>
  62. <version>${jjwt.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.jsonwebtoken</groupId>
  66. <artifactId>jjwt-impl</artifactId>
  67. <version>${jjwt.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.jsonwebtoken</groupId>
  71. <artifactId>jjwt-jackson</artifactId>
  72. <version>${jjwt.version}</version>
  73. </dependency>
  74. <!-- quartz -->
  75. <dependency>
  76. <groupId>org.quartz-scheduler</groupId>
  77. <artifactId>quartz</artifactId>
  78. </dependency>
  79. <!-- linux的管理 -->
  80. <dependency>
  81. <groupId>ch.ethz.ganymed</groupId>
  82. <artifactId>ganymed-ssh2</artifactId>
  83. <version>build210</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.jcraft</groupId>
  87. <artifactId>jsch</artifactId>
  88. <version>0.1.55</version>
  89. </dependency>
  90. <!-- 获取系统信息 -->
  91. <dependency>
  92. <groupId>com.github.oshi</groupId>
  93. <artifactId>oshi-core</artifactId>
  94. <version>5.3.6</version>
  95. </dependency>
  96. <!-- <dependency>-->
  97. <!-- <groupId>com.rabbitmq</groupId>-->
  98. <!-- <artifactId>amqp-client</artifactId>-->
  99. <!-- </dependency>-->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-test</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework</groupId>
  106. <artifactId>spring-test</artifactId>
  107. </dependency>
  108. </dependencies>
  109. <!-- 打包 -->
  110. <build>
  111. <finalName>zhcy</finalName>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-maven-plugin</artifactId>
  116. </plugin>
  117. <!-- 跳过单元测试 -->
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-surefire-plugin</artifactId>
  121. <configuration>
  122. <skipTests>true</skipTests>
  123. </configuration>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>