杭州市委办项管
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

141 lines
5.4KB

  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.ningdatech</groupId>
  6. <artifactId>project-management</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0.0</version>
  9. <name>project-management</name>
  10. <description>丽水项管二期项目</description>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <spring-boot.version>2.6.11</spring-boot.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. <jwt.version>3.7.0</jwt.version>
  17. <com.alibaba.druid.version>1.2.8</com.alibaba.druid.version>
  18. <mybatis.plus.version>3.5.1</mybatis.plus.version>
  19. <io.springfox-swagger2.version>3.0.0</io.springfox-swagger2.version>
  20. <swagger-knife.version>3.0.3</swagger-knife.version>
  21. <fastjson.version>1.2.83</fastjson.version>
  22. <guava.version>31.1-jre</guava.version>
  23. <commons-pool2.version>2.11.1</commons-pool2.version>
  24. <useragent.yauaa>6.11</useragent.yauaa>
  25. <druid.version>1.2.8</druid.version>
  26. <mica.ip2region>2.6.3</mica.ip2region>
  27. </properties>
  28. <dependencyManagement>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.apache.poi</groupId>
  32. <artifactId>poi</artifactId>
  33. <version>5.2.2</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>druid-spring-boot-starter</artifactId>
  38. <version>${druid.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.poi</groupId>
  42. <artifactId>poi-ooxml</artifactId>
  43. <version>5.2.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>fastjson</artifactId>
  48. <version>${fastjson.version}</version>
  49. </dependency>
  50. <!-- 解析客户端操作系统、浏览器信息 -->
  51. <dependency>
  52. <groupId>nl.basjes.parse.useragent</groupId>
  53. <artifactId>yauaa</artifactId>
  54. <version>${useragent.yauaa}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-dependencies</artifactId>
  59. <version>${spring-boot.version}</version>
  60. <type>pom</type>
  61. <scope>import</scope>
  62. </dependency>
  63. <!--druid数据库连接池-->
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>druid</artifactId>
  67. <version>${com.alibaba.druid.version}</version>
  68. </dependency>
  69. <!-- jwt -->
  70. <dependency>
  71. <groupId>com.auth0</groupId>
  72. <artifactId>java-jwt</artifactId>
  73. <version>${jwt.version}</version>
  74. </dependency>
  75. <!-- mybatis plus -->
  76. <dependency>
  77. <groupId>com.baomidou</groupId>
  78. <artifactId>mybatis-plus-boot-starter</artifactId>
  79. <version>${mybatis.plus.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.google.guava</groupId>
  83. <artifactId>guava</artifactId>
  84. <version>${guava.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.ningdatech</groupId>
  88. <artifactId>nd-basic</artifactId>
  89. <version>1.0.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.ningdatech</groupId>
  93. <artifactId>nd-swagger2-starter</artifactId>
  94. <version>1.0.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.ningdatech</groupId>
  98. <artifactId>nd-flowable-starter</artifactId>
  99. <version>1.0.0</version>
  100. </dependency>
  101. </dependencies>
  102. </dependencyManagement>
  103. <repositories>
  104. <!--阿里云主仓库,代理了maven central和jcenter仓库-->
  105. <repository>
  106. <id>aliyun</id>
  107. <name>aliyun</name>
  108. <url>https://maven.aliyun.com/repository/public</url>
  109. <releases>
  110. <enabled>true</enabled>
  111. </releases>
  112. <snapshots>
  113. <enabled>false</enabled>
  114. </snapshots>
  115. </repository>
  116. </repositories>
  117. <pluginRepositories>
  118. <!--阿里云代理Spring 插件仓库-->
  119. <pluginRepository>
  120. <id>spring-plugin</id>
  121. <name>spring-plugin</name>
  122. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  123. <releases>
  124. <enabled>true</enabled>
  125. </releases>
  126. <snapshots>
  127. <enabled>false</enabled>
  128. </snapshots>
  129. </pluginRepository>
  130. </pluginRepositories>
  131. <modules>
  132. <module>pmapi</module>
  133. <module>ningda-generator</module>
  134. </modules>
  135. </project>