pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. <parent>
  6. <artifactId>foster</artifactId>
  7. <groupId>org.flyer</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <!-- test -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-test</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <version>1.5.9.RELEASE</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus-boot-starter</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.baomidou</groupId>
  43. <artifactId>mybatis-plus-generator</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.velocity</groupId>
  47. <artifactId>velocity-engine-core</artifactId>
  48. <version>2.3</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-data-redis</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-validation</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-pool2</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>fastjson</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.jsonwebtoken</groupId>
  68. <artifactId>jjwt</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>mysql</groupId>
  72. <artifactId>mysql-connector-java</artifactId>
  73. <scope>runtime</scope>
  74. </dependency>
  75. <!-- 阿里短信-->
  76. <dependency>
  77. <groupId>com.aliyun</groupId>
  78. <artifactId>aliyun-java-sdk-core</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.aliyun</groupId>
  82. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>cn.hutool</groupId>
  86. <artifactId>hutool-all</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>cn.dev33</groupId>
  90. <artifactId>sa-token-spring-boot-starter</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.mylib</groupId>
  94. <artifactId>GeoLib</artifactId>
  95. <version>1.0</version>
  96. </dependency>
  97. </dependencies>
  98. <repositories>
  99. <repository>
  100. <id>osgeo</id>
  101. <name>OSGeo Release Repository</name>
  102. <url>https://repo.osgeo.org/repository/release/</url>
  103. <snapshots><enabled>false</enabled></snapshots>
  104. <releases><enabled>false</enabled></releases>
  105. </repository>
  106. <repository>
  107. <id>apache.spring-cloud</id>
  108. <name>Apache spring-cloud Repository</name>
  109. <url>https://www.apache.org/licenses/LICENSE-2.0</url>
  110. </repository>
  111. </repositories>
  112. <!-- 编译 -->
  113. <build>
  114. <finalName>foster-common</finalName>
  115. <resources>
  116. <resource>
  117. <directory>src/main/resources</directory>
  118. <includes>
  119. <include>**/*.*</include>
  120. </includes>
  121. <filtering>false</filtering>
  122. </resource>
  123. </resources>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-jar-plugin</artifactId>
  128. <configuration>
  129. <archive>
  130. <manifest>
  131. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  132. </manifest>
  133. </archive>
  134. </configuration>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-surefire-plugin</artifactId>
  139. <configuration>
  140. <skipTests>true</skipTests><!-- 忽略测试 -->
  141. </configuration>
  142. </plugin>
  143. </plugins>
  144. </build>
  145. </project>