1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <!-- master 提交测试-->
- <parent>
- <artifactId>jeecg-boot-parent</artifactId>
- <groupId>org.jeecgframework.boot</groupId>
- <version>2.4.5</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jeecg-boot-bytedance-ad</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>jeecg-boot-base-core</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>hibernate-re</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--引入微服务启动依赖 starter-->
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>jeecg-boot-starter-cloud</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeecgframework.boot</groupId>
- <artifactId>jeecg-system-local-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.5.10</version>
- </dependency>
- <dependency>
- <groupId>com.github.tony19</groupId>
- <artifactId>apktool-lib</artifactId>
- <version>1.4.4-3</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.googlecode.plist</groupId>
- <artifactId>dd-plist</artifactId>
- <version>1.16</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- <resources>
- <!-- 解决MyBatis配置文件引入问题 -->
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.properties</include>
- <include>**/*.xml</include>
- </includes>
- <!-- 是否替换资源中的属性-->
- <filtering>true</filtering>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- </project>
|