pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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.7.17</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>cn.seecoder</groupId>
  12. <artifactId>FdroidRepository</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>FdroidRepository</name>
  15. <description>FdroidRepository</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.mybatis.spring.boot</groupId>
  22. <artifactId>mybatis-spring-boot-starter</artifactId>
  23. <version>2.3.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  37. <version>2.1.4</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mybatis.spring.boot</groupId>
  41. <artifactId>mybatis-spring-boot-starter</artifactId>
  42. <version>2.1.4</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-web</artifactId>
  47. <version>RELEASE</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <version>8.0.23</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.github.docker-java</groupId>
  57. <artifactId>docker-java-core</artifactId>
  58. <version>3.3.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.github.docker-java</groupId>
  62. <artifactId>docker-java-transport-httpclient5</artifactId>
  63. <version>3.3.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.eclipse.jgit</groupId>
  67. <artifactId>org.eclipse.jgit</artifactId>
  68. <version>5.9.0.202009080501-r</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.auth0</groupId>
  72. <artifactId>java-jwt</artifactId>
  73. <version>3.4.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-security</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.security</groupId>
  81. <artifactId>spring-security-test</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>io.jsonwebtoken</groupId>
  86. <artifactId>jjwt</artifactId>
  87. <version>0.9.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.jsonwebtoken</groupId>
  91. <artifactId>jjwt-api</artifactId>
  92. <version>0.11.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>io.jsonwebtoken</groupId>
  96. <artifactId>jjwt-impl</artifactId>
  97. <version>0.11.2</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>io.jsonwebtoken</groupId>
  101. <artifactId>jjwt-jackson</artifactId>
  102. <version>0.11.2</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.github.houbb</groupId>
  106. <artifactId>heaven</artifactId>
  107. <version>0.6.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.github.houbb</groupId>
  111. <artifactId>opencc4j</artifactId>
  112. <version>1.8.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-websocket</artifactId>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. <configuration>
  125. <image>
  126. <builder>paketobuildpacks/builder-jammy-base:latest</builder>
  127. </image>
  128. <excludes>
  129. <exclude>
  130. <groupId>org.projectlombok</groupId>
  131. <artifactId>lombok</artifactId>
  132. </exclude>
  133. </excludes>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>