pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>juc</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.7.5</version>
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <!-- <java.version>1.8</java.version>-->
  17. </properties>
  18. <dependencies>
  19. <!--bouncycastle-->
  20. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  21. <dependency>
  22. <groupId>org.bouncycastle</groupId>
  23. <artifactId>bcprov-jdk15on</artifactId>
  24. <version>1.70</version>
  25. </dependency>
  26. <!--微信支付-->
  27. <dependency>
  28. <groupId>com.github.wechatpay-apiv3</groupId>
  29. <artifactId>wechatpay-apache-httpclient</artifactId>
  30. <version>0.4.9</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  39. <version>2.1.3.RELEASE</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.projectlombok</groupId>
  43. <artifactId>lombok</artifactId>
  44. <version>1.18.24</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.slf4j</groupId>
  48. <artifactId>slf4j-api</artifactId>
  49. <version>1.7.36</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>ch.qos.logback</groupId>
  53. <artifactId>logback-classic</artifactId>
  54. <version>1.2.3</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.openjdk.jol</groupId>
  58. <artifactId>jol-core</artifactId>
  59. <version>0.17</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>junit</groupId>
  63. <artifactId>junit</artifactId>
  64. <version>4.13.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>fastjson</artifactId>
  69. <version>1.2.83</version>
  70. </dependency>
  71. <!-- jcstress 核心包 并发测试工具-->
  72. <dependency>
  73. <groupId>org.openjdk.jcstress</groupId>
  74. <artifactId>jcstress-core</artifactId>
  75. <version>0.3</version>
  76. </dependency>
  77. <!-- jcstress测试用例包 -->
  78. <dependency>
  79. <groupId>org.openjdk.jcstress</groupId>
  80. <artifactId>jcstress-samples</artifactId>
  81. <version>0.3</version>
  82. </dependency>
  83. <!--javassist字节码操作-->
  84. <dependency>
  85. <groupId>org.javassist</groupId>
  86. <artifactId>javassist</artifactId>
  87. <version>3.25.0-GA</version>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <finalName>juc</finalName>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-compiler-plugin</artifactId>
  96. <version>3.8.1</version>
  97. </plugin>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. <version>2.7.5</version> <!-- 使用你的 Spring Boot 版本 -->
  102. <configuration>
  103. <mainClass>org.example.web.JUCApplication</mainClass>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>