pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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.xmeta</groupId>
  6. <artifactId>open-mock</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>open-mock</name>
  9. <description>OpenApi mock demo</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.squareup.okhttp3</groupId>
  19. <artifactId>okhttp</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.bouncycastle</groupId>
  23. <artifactId>bcprov-jdk15on</artifactId>
  24. <version>1.59</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.commons</groupId>
  28. <artifactId>commons-lang3</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-configuration-processor</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>commons-codec</groupId>
  41. <artifactId>commons-codec</artifactId>
  42. <version>1.15</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.bouncycastle</groupId>
  46. <artifactId>bcprov-jdk15on</artifactId>
  47. <version>1.69</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.bouncycastle</groupId>
  51. <artifactId>bcprov-jdk15to18</artifactId>
  52. <version>1.69</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>commons-codec</groupId>
  56. <artifactId>commons-codec</artifactId>
  57. <version>1.7</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>cn.hutool</groupId>
  61. <artifactId>hutool-all</artifactId>
  62. <version>5.6.2</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-test</artifactId>
  76. <scope>test</scope>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.junit.vintage</groupId>
  80. <artifactId>junit-vintage-engine</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. </dependencies>
  85. <dependencyManagement>
  86. <dependencies>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-dependencies</artifactId>
  90. <version>${spring-boot.version}</version>
  91. <type>pom</type>
  92. <scope>import</scope>
  93. </dependency>
  94. </dependencies>
  95. </dependencyManagement>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-compiler-plugin</artifactId>
  101. <version>3.8.1</version>
  102. <configuration>
  103. <source>1.8</source>
  104. <target>1.8</target>
  105. <encoding>UTF-8</encoding>
  106. </configuration>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. <version>2.3.7.RELEASE</version>
  112. <configuration>
  113. <mainClass>com.xmeta.opensdk.XMetaApplication</mainClass>
  114. </configuration>
  115. <executions>
  116. <execution>
  117. <id>repackage</id>
  118. <goals>
  119. <goal>repackage</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. </plugin>
  124. </plugins>
  125. <finalName>${project.artifactId}</finalName>
  126. </build>
  127. </project>