pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.3.5.RELEASE</version>
  8. <relativePath/>
  9. </parent>
  10. <name>aj-report</name>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>com.anji-plus</groupId>
  13. <artifactId>aj-report</artifactId>
  14. <version>2.0.2.RELEASE</version>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <additionalparam>-Xdoclint:none</additionalparam>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. <maven.test.skip>true</maven.test.skip>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-cache</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-context</artifactId>
  39. <version>2.2.6.RELEASE</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.anji-plus</groupId>
  43. <artifactId>spring-boot-gaea</artifactId>
  44. <version>2.0.3.RELEASE</version>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-redis</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-boot-starter</artifactId>
  55. <version>3.3.2</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>druid</artifactId>
  64. <version>1.2.6</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.flywaydb</groupId>
  68. <artifactId>flyway-core</artifactId>
  69. <version>5.2.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>net.sf.ehcache</groupId>
  73. <artifactId>ehcache</artifactId>
  74. <version>2.10.6</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpclient</artifactId>
  79. <version>4.5.10</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. <version>1.18.10</version>
  85. <optional>true</optional>
  86. </dependency>
  87. </dependencies>
  88. <developers>
  89. <developer>
  90. <name>develop.anji-plus.com</name>
  91. <email>MS@anji-plus.com</email>
  92. <url>https://github.com/anji-plus</url>
  93. </developer>
  94. </developers>
  95. <profiles>
  96. <profile>
  97. <id>dev</id>
  98. <properties>
  99. <spring.profiles.active>dev</spring.profiles.active>
  100. </properties>
  101. <activation>
  102. <activeByDefault>true</activeByDefault>
  103. </activation>
  104. </profile>
  105. </profiles>
  106. <build>
  107. <resources>
  108. <resource>
  109. <directory>src/main/resources</directory>
  110. <filtering>true</filtering>
  111. </resource>
  112. </resources>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-maven-plugin</artifactId>
  117. <configuration>
  118. <includeSystemScope>true</includeSystemScope>
  119. </configuration>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-resources-plugin</artifactId>
  124. <configuration>
  125. <nonFilteredFileExtensions>
  126. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  127. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  128. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  129. </nonFilteredFileExtensions>
  130. </configuration>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-assembly-plugin</artifactId>
  135. <version>3.3.0</version>
  136. <configuration>
  137. <descriptors>
  138. <descriptor>src/main/assembly/assembly.xml</descriptor>
  139. </descriptors>
  140. </configuration>
  141. <executions>
  142. <execution>
  143. <id>make-assembly</id>
  144. <phase>package</phase>
  145. <goals>
  146. <goal>single</goal>
  147. </goals>
  148. </execution>
  149. </executions>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. </project>