pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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>com.anji-plus</groupId>
  38. <artifactId>spring-boot-gaea</artifactId>
  39. <version>2.0.3.RELEASE</version>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-redis</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <version>3.3.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid</artifactId>
  59. <version>1.2.6</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.flywaydb</groupId>
  63. <artifactId>flyway-core</artifactId>
  64. <version>5.2.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>net.sf.ehcache</groupId>
  68. <artifactId>ehcache</artifactId>
  69. <version>2.10.6</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpclient</artifactId>
  74. <version>4.5.10</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. <version>1.18.10</version>
  80. <optional>true</optional>
  81. </dependency>
  82. </dependencies>
  83. <developers>
  84. <developer>
  85. <name>develop.anji-plus.com</name>
  86. <email>MS@anji-plus.com</email>
  87. <url>https://github.com/anji-plus</url>
  88. </developer>
  89. </developers>
  90. <profiles>
  91. <profile>
  92. <id>dev</id>
  93. <properties>
  94. <spring.profiles.active>dev</spring.profiles.active>
  95. </properties>
  96. <activation>
  97. <activeByDefault>true</activeByDefault>
  98. </activation>
  99. </profile>
  100. </profiles>
  101. <build>
  102. <resources>
  103. <resource>
  104. <directory>src/main/resources</directory>
  105. <filtering>true</filtering>
  106. </resource>
  107. </resources>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. <configuration>
  113. <includeSystemScope>true</includeSystemScope>
  114. </configuration>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-resources-plugin</artifactId>
  119. <configuration>
  120. <nonFilteredFileExtensions>
  121. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  122. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  123. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  124. </nonFilteredFileExtensions>
  125. </configuration>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-assembly-plugin</artifactId>
  130. <version>3.3.0</version>
  131. <configuration>
  132. <descriptors>
  133. <descriptor>src/main/assembly/assembly.xml</descriptor>
  134. </descriptors>
  135. </configuration>
  136. <executions>
  137. <execution>
  138. <id>make-assembly</id>
  139. <phase>package</phase>
  140. <goals>
  141. <goal>single</goal>
  142. </goals>
  143. </execution>
  144. </executions>
  145. </plugin>
  146. </plugins>
  147. </build>
  148. </project>