pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.nokia</groupId>
  5. <artifactId>acl_tousu</artifactId>
  6. <version>1.11</version>
  7. <parent>
  8. <groupId>com.nokia</groupId>
  9. <artifactId>hb_springboot_parent</artifactId>
  10. <version>1.0</version>
  11. <relativePath />
  12. </parent>
  13. <properties>
  14. <skipTests>true</skipTests>
  15. </properties>
  16. <repositories>
  17. <repository>
  18. <id>nexus-maven</id>
  19. <name>nexus-maven</name>
  20. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  21. </repository>
  22. </repositories>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.google.guava</groupId>
  27. <artifactId>guava</artifactId>
  28. <version>30.1.1-jre</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.squareup.okhttp3</groupId>
  33. <artifactId>okhttp</artifactId>
  34. <version>4.10.0</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.github.xiaoymin</groupId>
  39. <artifactId>knife4j-dependencies</artifactId>
  40. <version>4.0.0-SNAPSHOT</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. </dependencies>
  45. </dependencyManagement>
  46. <dependencies>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-configuration-processor</artifactId>
  50. <optional>true</optional>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-validation</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-data-redis</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>fastjson</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.baomidou</groupId>
  66. <artifactId>mybatis-plus-boot-starter</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.postgresql</groupId>
  70. <artifactId>postgresql</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-web</artifactId>
  75. </dependency>
  76. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  77. <dependency>
  78. <groupId>com.google.code.gson</groupId>
  79. <artifactId>gson</artifactId>
  80. <version>2.10</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-test</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.projectlombok</groupId>
  89. <artifactId>lombok</artifactId>
  90. <scope>provided</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.commons</groupId>
  94. <artifactId>commons-csv</artifactId>
  95. </dependency>
  96. <!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-ui -->
  97. <dependency>
  98. <groupId>org.springdoc</groupId>
  99. <artifactId>springdoc-openapi-ui</artifactId>
  100. <version>1.6.13</version>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/io.minio/minio -->
  103. <dependency>
  104. <groupId>io.minio</groupId>
  105. <artifactId>minio</artifactId>
  106. <version>8.4.6</version>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  109. <dependency>
  110. <groupId>cn.hutool</groupId>
  111. <artifactId>hutool-all</artifactId>
  112. <version>5.8.10</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.github.xiaoymin</groupId>
  116. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <finalName>aclTousu</finalName>
  121. <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
  122. <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
  123. <outputDirectory>${project.basedir}/target/classes</outputDirectory>
  124. <testOutputDirectory>${project.basedir}/target/test-classes</testOutputDirectory>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-compiler-plugin</artifactId>
  129. <configuration>
  130. <source>1.8</source>
  131. <target>1.8</target>
  132. </configuration>
  133. </plugin>
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. </plugin>
  138. </plugins>
  139. </build>
  140. </project>