pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.5.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.citygis</groupId>
  12. <artifactId>cdc</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <name>cdc</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-tomcat</artifactId>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.httpcomponents</groupId>
  37. <artifactId>httpclient</artifactId>
  38. <version>4.5.3</version>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>fastjson</artifactId>
  44. <version>2.0.5</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.microsoft.sqlserver</groupId>
  48. <artifactId>sqljdbc4</artifactId>
  49. <version>4.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mybatis.spring.boot</groupId>
  53. <artifactId>mybatis-spring-boot-starter</artifactId>
  54. <version>2.1.4</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  57. <dependency>
  58. <groupId>org.projectlombok</groupId>
  59. <artifactId>lombok</artifactId>
  60. <version>1.18.12</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>druid</artifactId>
  67. <version>1.1.22</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.bouncycastle</groupId>
  71. <artifactId>bcprov-jdk15on</artifactId>
  72. <version>1.61</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>cn.gmssl</groupId>
  76. <artifactId>gmssl_provider</artifactId>
  77. <scope>system</scope>
  78. <version>1.0</version>
  79. <systemPath>${project.basedir}/libs/gmssl_provider.jar</systemPath>
  80. </dependency>
  81. </dependencies>
  82. <build>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. <configuration>
  88. <includeSystemScope>true</includeSystemScope>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>