pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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>3.1.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.scbfkj</groupId>
  12. <artifactId>uni</artifactId>
  13. <version>0.0.1</version>
  14. <name>uni</name>
  15. <description>uni</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <graalvm.version>23.1.1</graalvm.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-actuator</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-devtools</artifactId>
  32. <scope>runtime</scope>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.mysql</groupId>
  37. <artifactId>mysql-connector-j</artifactId>
  38. <scope>runtime</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.projectreactor</groupId>
  47. <artifactId>reactor-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.kafka</groupId>
  52. <artifactId>kafka-clients</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.ibm.mq</groupId>
  56. <artifactId>com.ibm.mq.allclient</artifactId>
  57. <version>9.3.2.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>co.elastic.clients</groupId>
  61. <artifactId>elasticsearch-java</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.rabbitmq</groupId>
  65. <artifactId>amqp-client</artifactId>
  66. <version>5.16.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fasterxml.jackson.core</groupId>
  70. <artifactId>jackson-databind</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-net</groupId>
  74. <artifactId>commons-net</artifactId>
  75. <version>3.9.0</version>
  76. </dependency>
  77. <!--
  78. The polyglot dependency is always required for Java embeddings.
  79. It contains the polyglot embedding APIs to include any polyglot language. -->
  80. <dependency>
  81. <groupId>org.graalvm.polyglot</groupId>
  82. <artifactId>polyglot</artifactId>
  83. <version>${graalvm.version}</version>
  84. </dependency>
  85. <!--
  86. Choose here which languages should be used.
  87. Available languages in the polyglot group are:
  88. js, ruby, python, wasm, llvm, llvm-native, java
  89. Switch to community licenses by adding a `-community` suffix to the artefact id (e.g. `js-communtiy`).
  90. Switch to native isolate versions of languages by adding a `-isolate` suffix. (`js-isolate`).
  91. Any dependency in the org.graalvm.polyglot group is intended for use by polyglot embeddings.
  92. -->
  93. <dependency>
  94. <groupId>org.graalvm.polyglot</groupId>
  95. <artifactId>js</artifactId>
  96. <version>${graalvm.version}</version>
  97. <type>pom</type>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.zaxxer</groupId>
  101. <artifactId>HikariCP</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.xerial</groupId>
  105. <artifactId>sqlite-jdbc</artifactId>
  106. <scope>runtime</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-aop</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.commons</groupId>
  114. <artifactId>commons-pool2</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.jayway.jsonpath</groupId>
  118. <artifactId>json-path</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-starter-websocket</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.google.guava</groupId>
  126. <artifactId>guava</artifactId>
  127. <version>31.1-jre</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.activemq</groupId>
  131. <artifactId>activemq-client</artifactId>
  132. <version>5.18.2</version>
  133. </dependency>
  134. </dependencies>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-maven-plugin</artifactId>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>