pom-xml-flattened 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.zjugis</groupId>
  7. <artifactId>tinker-boot-starter</artifactId>
  8. <version>1.0.7.beta-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.zjugis</groupId>
  11. <artifactId>cyzz</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>server</name>
  14. <description>server</description>
  15. <licenses>
  16. <license>
  17. <name>Apache License, Version 2.0</name>
  18. <url>https://www.apache.org/licenses/LICENSE-2.0</url>
  19. </license>
  20. </licenses>
  21. <properties>
  22. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  23. <java.version>1.8</java.version>
  24. <tinker.version>1.0.8.beta-SNAPSHOT</tinker.version>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <geotools.version>25.2</geotools.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.zjugis</groupId>
  31. <artifactId>tinker-starter</artifactId>
  32. <version>${tinker.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>net.sourceforge.tess4j</groupId>
  36. <artifactId>tess4j</artifactId>
  37. <version>5.12.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.dromara.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>6.0.0-M21</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.squareup.okhttp3</groupId>
  46. <artifactId>okhttp</artifactId>
  47. <version>4.12.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.java.dev.jna</groupId>
  51. <artifactId>jna</artifactId>
  52. <version>5.12.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.pdfbox</groupId>
  56. <artifactId>pdfbox</artifactId>
  57. <version>2.0.29</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.pdfbox</groupId>
  61. <artifactId>fontbox</artifactId>
  62. <version>2.0.29</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.pdfbox</groupId>
  66. <artifactId>xmpbox</artifactId>
  67. <version>2.0.29</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.pdfbox</groupId>
  71. <artifactId>preflight</artifactId>
  72. <version>2.0.29</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.pdfbox</groupId>
  76. <artifactId>pdfbox-tools</artifactId>
  77. <version>2.0.29</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.pdfbox</groupId>
  81. <artifactId>jempbox</artifactId>
  82. <version>1.8.17</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.geotools</groupId>
  86. <artifactId>gt-main</artifactId>
  87. <version>${geotools.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.geotools</groupId>
  91. <artifactId>gt-shapefile</artifactId>
  92. <version>${geotools.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.geotools</groupId>
  96. <artifactId>gt-geojson</artifactId>
  97. <version>${geotools.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.commons</groupId>
  101. <artifactId>commons-math3</artifactId>
  102. <version>3.6.1</version>
  103. </dependency>
  104. </dependencies>
  105. <repositories>
  106. <repository>
  107. <releases>
  108. <enabled>true</enabled>
  109. </releases>
  110. <snapshots>
  111. <enabled>false</enabled>
  112. </snapshots>
  113. <id>osgeo</id>
  114. <name>OSGeo Release Repository</name>
  115. <url>https://repo.osgeo.org/repository/release/</url>
  116. </repository>
  117. <repository>
  118. <releases>
  119. <enabled>false</enabled>
  120. </releases>
  121. <snapshots>
  122. <enabled>true</enabled>
  123. </snapshots>
  124. <id>osgeo-snapshot</id>
  125. <name>OSGeo Snapshot Repository</name>
  126. <url>https://repo.osgeo.org/repository/snapshot/</url>
  127. </repository>
  128. </repositories>
  129. <build>
  130. <pluginManagement>
  131. <plugins>
  132. <plugin>
  133. <artifactId>maven-clean-plugin</artifactId>
  134. <version>3.0.0</version>
  135. </plugin>
  136. <plugin>
  137. <artifactId>maven-resources-plugin</artifactId>
  138. <version>3.0.2</version>
  139. </plugin>
  140. <plugin>
  141. <artifactId>maven-compiler-plugin</artifactId>
  142. <version>3.7.0</version>
  143. </plugin>
  144. <plugin>
  145. <artifactId>maven-surefire-plugin</artifactId>
  146. <version>2.20.1</version>
  147. </plugin>
  148. <plugin>
  149. <artifactId>maven-jar-plugin</artifactId>
  150. <version>3.0.2</version>
  151. </plugin>
  152. <plugin>
  153. <artifactId>maven-install-plugin</artifactId>
  154. <version>2.5.2</version>
  155. </plugin>
  156. <plugin>
  157. <artifactId>maven-deploy-plugin</artifactId>
  158. <version>2.8.2</version>
  159. </plugin>
  160. </plugins>
  161. </pluginManagement>
  162. <plugins>
  163. <plugin>
  164. <artifactId>maven-compiler-plugin</artifactId>
  165. <configuration>
  166. <source>8</source>
  167. <target>8</target>
  168. </configuration>
  169. </plugin>
  170. <plugin>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-maven-plugin</artifactId>
  173. <executions>
  174. <execution>
  175. <goals>
  176. <goal>repackage</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. <configuration>
  181. <mainClass>com.zjugis.cyzz.ServerApplication</mainClass>
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. </build>
  186. </project>