杭州市委办项管
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.

pom.xml 5.6KB

1 vuosi sitten
1 vuosi sitten
8 kuukautta sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
1 vuosi sitten
5 kuukautta sitten
1 vuosi sitten
6 kuukautta sitten
1 vuosi sitten
1 vuosi sitten
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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.hz.pm</groupId>
  6. <artifactId>hz-project-management</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0.0</version>
  9. <name>hz-project-management</name>
  10. <description>杭州市委办项管</description>
  11. <properties>
  12. <skipTests>true</skipTests>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <spring-boot.version>2.6.11</spring-boot.version>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. <mybatis.plus.version>3.5.1</mybatis.plus.version>
  18. <io.springfox-swagger2.version>3.0.0</io.springfox-swagger2.version>
  19. <swagger-knife.version>3.0.3</swagger-knife.version>
  20. <fastjson.version>1.2.83</fastjson.version>
  21. <guava.version>31.1-jre</guava.version>
  22. <commons-pool2.version>2.11.1</commons-pool2.version>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>fastjson</artifactId>
  29. <version>${fastjson.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-dependencies</artifactId>
  34. <version>${spring-boot.version}</version>
  35. <type>pom</type>
  36. <scope>import</scope>
  37. </dependency>
  38. <!-- mybatis plus -->
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. <version>${mybatis.plus.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.guava</groupId>
  46. <artifactId>guava</artifactId>
  47. <version>${guava.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.ningdatech</groupId>
  51. <artifactId>nd-basic</artifactId>
  52. <version>1.0.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus-extension</artifactId>
  57. <version>${mybatis.plus.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.ningdatech</groupId>
  61. <artifactId>nd-swagger2-starter</artifactId>
  62. <version>1.0.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.ningdatech</groupId>
  66. <artifactId>nd-flowable-starter</artifactId>
  67. <version>1.0.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.flowable</groupId>
  71. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  72. <version>6.7.2</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>easyexcel-core</artifactId>
  77. <version>3.3.2</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.ningdatech</groupId>
  81. <artifactId>nd-file-starter</artifactId>
  82. <version>1.0.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.ningdatech</groupId>
  86. <artifactId>nd-cache-starter</artifactId>
  87. <version>1.0.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.ningdatech</groupId>
  91. <artifactId>nd-log-starter</artifactId>
  92. <version>1.0.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>joda-time</groupId>
  96. <artifactId>joda-time</artifactId>
  97. <version>2.10.6</version>
  98. </dependency>
  99. <!--状态机-->
  100. <dependency>
  101. <groupId>org.springframework.statemachine</groupId>
  102. <artifactId>spring-statemachine-core</artifactId>
  103. <version>2.0.1.RELEASE</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.github.oshi</groupId>
  107. <artifactId>oshi-core</artifactId>
  108. <version>6.4.0</version>
  109. </dependency>
  110. </dependencies>
  111. </dependencyManagement>
  112. <repositories>
  113. <!--阿里云主仓库,代理了maven central和jcenter仓库-->
  114. <repository>
  115. <id>aliyun</id>
  116. <name>aliyun</name>
  117. <url>https://maven.aliyun.com/repository/public</url>
  118. <releases>
  119. <enabled>true</enabled>
  120. </releases>
  121. <snapshots>
  122. <enabled>false</enabled>
  123. </snapshots>
  124. </repository>
  125. </repositories>
  126. <pluginRepositories>
  127. <!--阿里云代理Spring 插件仓库-->
  128. <pluginRepository>
  129. <id>spring-plugin</id>
  130. <name>spring-plugin</name>
  131. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  132. <releases>
  133. <enabled>true</enabled>
  134. </releases>
  135. <snapshots>
  136. <enabled>false</enabled>
  137. </snapshots>
  138. </pluginRepository>
  139. </pluginRepositories>
  140. <modules>
  141. <module>hz-pm-api</module>
  142. </modules>
  143. </project>