pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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>com.anjiplus.template.gaea</groupId>
  6. <artifactId>template-gaea</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <relativePath>../</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>report-core</artifactId>
  12. <name>aj-report</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.projectlombok</groupId>
  16. <artifactId>lombok</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.anji-plus</groupId>
  20. <artifactId>spring-boot-gaea</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-redis</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.cloud</groupId>
  34. <artifactId>spring-cloud-context</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-cache</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>net.sf.ehcache</groupId>
  55. <artifactId>ehcache</artifactId>
  56. <version>2.10.6</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.anji-plus</groupId>
  60. <artifactId>spring-boot-starter-gaea-export</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.anji-plus</groupId>
  64. <artifactId>spring-boot-starter-gaea-log</artifactId>
  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>org.apache.httpcomponents</groupId>
  73. <artifactId>httpclient</artifactId>
  74. <version>4.5.2</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpcore</artifactId>
  79. <version>4.4.5</version>
  80. </dependency>
  81. </dependencies>
  82. <build>
  83. <resources>
  84. <resource>
  85. <directory>src/main/resources</directory>
  86. <filtering>true</filtering>
  87. </resource>
  88. </resources>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. <configuration>
  94. <includeSystemScope>true</includeSystemScope>
  95. </configuration>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-resources-plugin</artifactId>
  100. <configuration>
  101. <nonFilteredFileExtensions>
  102. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  103. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  104. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  105. </nonFilteredFileExtensions>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>