pom.xml 2.7 KB

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