pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>eladmin-system</artifactId>
  12. <name>核心模块</name>
  13. <properties>
  14. <jjwt.version>0.11.2</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>0.0.1</version>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>me.zhengjie</groupId>
  27. <artifactId>eladmin-common</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!-- tools 模块包含了 common 和 logging 模块 -->
  32. <dependency>
  33. <groupId>me.zhengjie</groupId>
  34. <artifactId>eladmin-tools</artifactId>
  35. <version>0.0.1</version>
  36. </dependency>
  37. <!-- Spring boot websocket -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-websocket</artifactId>
  41. </dependency>
  42. <!-- jwt -->
  43. <dependency>
  44. <groupId>io.jsonwebtoken</groupId>
  45. <artifactId>jjwt-api</artifactId>
  46. <version>${jjwt.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.jsonwebtoken</groupId>
  50. <artifactId>jjwt-impl</artifactId>
  51. <version>${jjwt.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.jsonwebtoken</groupId>
  55. <artifactId>jjwt-jackson</artifactId>
  56. <version>${jjwt.version}</version>
  57. </dependency>
  58. <!-- quartz -->
  59. <dependency>
  60. <groupId>org.quartz-scheduler</groupId>
  61. <artifactId>quartz</artifactId>
  62. </dependency>
  63. <!-- linux的管理 -->
  64. <dependency>
  65. <groupId>ch.ethz.ganymed</groupId>
  66. <artifactId>ganymed-ssh2</artifactId>
  67. <version>build210</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.jcraft</groupId>
  71. <artifactId>jsch</artifactId>
  72. <version>0.1.55</version>
  73. </dependency>
  74. <!-- 获取系统信息 -->
  75. <dependency>
  76. <groupId>com.github.oshi</groupId>
  77. <artifactId>oshi-core</artifactId>
  78. <version>6.1.4</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.baomidou</groupId>
  82. <artifactId>mybatis-plus-boot-starter</artifactId>
  83. <version>3.5.1</version>
  84. </dependency>
  85. <!-- <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId>
  86. <version>${hu.tu}</version> </dependency> -->
  87. <dependency>
  88. <groupId>org.apache.pdfbox</groupId>
  89. <artifactId>pdfbox</artifactId>
  90. <version>3.0.0-alpha3</version>
  91. </dependency>
  92. </dependencies>
  93. <!-- 打包 -->
  94. <build>
  95. <plugins>
  96. <plugin>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-maven-plugin</artifactId>
  99. </plugin>
  100. <!-- 跳过单元测试 -->
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-surefire-plugin</artifactId>
  104. <configuration>
  105. <skipTests>true</skipTests>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>