pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.4.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-boot-bytedance-ad</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>jeecg-boot-base-core</artifactId>
  16. <exclusions>
  17. <exclusion>
  18. <groupId>org.jeecgframework.boot</groupId>
  19. <artifactId>hibernate-re</artifactId>
  20. </exclusion>
  21. </exclusions>
  22. </dependency>
  23. <!--引入微服务启动依赖 starter-->
  24. <dependency>
  25. <groupId>org.jeecgframework.boot</groupId>
  26. <artifactId>jeecg-boot-starter-cloud</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.jeecgframework.boot</groupId>
  30. <artifactId>jeecg-system-local-api</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.httpcomponents</groupId>
  34. <artifactId>httpmime</artifactId>
  35. <version>4.5.10</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.github.tony19</groupId>
  39. <artifactId>apktool-lib</artifactId>
  40. <version>1.4.4-3</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.googlecode.plist</groupId>
  45. <artifactId>dd-plist</artifactId>
  46. <version>1.16</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. <resources>
  58. <!-- 解决MyBatis配置文件引入问题 -->
  59. <resource>
  60. <directory>src/main/java</directory>
  61. <includes>
  62. <include>**/*.properties</include>
  63. <include>**/*.xml</include>
  64. </includes>
  65. <!-- 是否替换资源中的属性-->
  66. <filtering>true</filtering>
  67. </resource>
  68. <resource>
  69. <directory>src/main/resources</directory>
  70. <filtering>true</filtering>
  71. </resource>
  72. </resources>
  73. </build>
  74. </project>