pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. <resources>
  53. <!-- 解决MyBatis配置文件引入问题 -->
  54. <resource>
  55. <directory>src/main/java</directory>
  56. <includes>
  57. <include>**/*.properties</include>
  58. <include>**/*.xml</include>
  59. <include>**/*.json</include>
  60. </includes>
  61. <!-- 是否替换资源中的属性-->
  62. <filtering>true</filtering>
  63. </resource>
  64. <resource>
  65. <directory>src/main/resources</directory>
  66. </resource>
  67. </resources>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <configuration>
  73. <includeSystemScope>true</includeSystemScope>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. <!-- 环境 -->
  79. <profiles>
  80. <!-- 开发 -->
  81. <profile>
  82. <id>dev-bak</id>
  83. <activation>
  84. <!--默认激活配置-->
  85. <activeByDefault>true</activeByDefault>
  86. </activation>
  87. <properties>
  88. <activatedProperties>dev-bak</activatedProperties>
  89. </properties>
  90. </profile>
  91. <!-- 测试 -->
  92. <profile>
  93. <id>test</id>
  94. <properties>
  95. <activatedProperties>test</activatedProperties>
  96. </properties>
  97. </profile>
  98. <!-- 生产 -->
  99. <profile>
  100. <id>prod</id>
  101. <properties>
  102. <activatedProperties>prod</activatedProperties>
  103. </properties>
  104. </profile>
  105. </profiles>
  106. </project>