pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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>zd-modules</artifactId>
  7. <groupId>com.zd</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.zd.security</groupId>
  12. <artifactId>zd-security</artifactId>
  13. <packaging>jar</packaging>
  14. <description>实验室安全服务</description>
  15. <dependencies>
  16. <!-- SpringCloud Alibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <!-- SpringCloud Alibaba Nacos Config -->
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. </dependency>
  26. <!-- Mysql Connector -->
  27. <dependency>
  28. <groupId>mysql</groupId>
  29. <artifactId>mysql-connector-java</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.zd.core</groupId>
  33. <artifactId>common-core</artifactId>
  34. <exclusions>
  35. <exclusion>
  36. <artifactId>commons-codec</artifactId>
  37. <groupId>commons-codec</groupId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <!-- zd Common Swagger -->
  42. <dependency>
  43. <groupId>com.zd.swagger</groupId>
  44. <artifactId>common-swagger</artifactId>
  45. <exclusions>
  46. <exclusion>
  47. <artifactId>guava</artifactId>
  48. <groupId>com.google.guava</groupId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <!-- mybatis plus -->
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-boot-starter</artifactId>
  56. <exclusions>
  57. <exclusion>
  58. <artifactId>mybatis</artifactId>
  59. <groupId>org.mybatis</groupId>
  60. </exclusion>
  61. <exclusion>
  62. <artifactId>jsqlparser</artifactId>
  63. <groupId>com.github.jsqlparser</groupId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>cn.hutool</groupId>
  69. <artifactId>hutool-all</artifactId>
  70. <version>${hutools.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.zd.security</groupId>
  74. <artifactId>zd-security-api</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.zd.laboratory</groupId>
  78. <artifactId>zd-laboratory-api</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.deepoove</groupId>
  82. <artifactId>poi-tl</artifactId>
  83. <version>1.10.2</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. </dependencies>
  87. <build>
  88. <finalName>${project.artifactId}</finalName>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. <version>${spring-boot.version}</version>
  94. <configuration>
  95. <includeSystemScope>true</includeSystemScope>
  96. </configuration>
  97. <executions>
  98. <execution>
  99. <goals>
  100. <goal>repackage</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>