| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 | <?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.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>        <dependency>            <groupId>org.jeecgframework.boot</groupId>            <artifactId>jeecg-system-local-api</artifactId>        </dependency>    </dependencies>    <build>        <resources>            <!-- 解决MyBatis配置文件引入问题 -->            <resource>                <directory>src/main/java</directory>                <includes>                    <include>**/*.properties</include>                    <include>**/*.xml</include>                    <include>**/*.json</include>                </includes>                <!-- 是否替换资源中的属性-->                <filtering>true</filtering>            </resource>            <resource>                <directory>src/main/resources</directory>            </resource>        </resources>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <configuration>                    <includeSystemScope>true</includeSystemScope>                </configuration>            </plugin>        </plugins>    </build>    <!-- 环境 -->    <profiles>        <!-- 开发 -->        <profile>            <id>dev-bak</id>            <activation>                <!--默认激活配置-->                <activeByDefault>true</activeByDefault>            </activation>            <properties>                <activatedProperties>dev-bak</activatedProperties>            </properties>        </profile>        <!-- 测试 -->        <profile>            <id>test</id>            <properties>                <activatedProperties>test</activatedProperties>            </properties>        </profile>        <!-- 生产 -->        <profile>            <id>prod</id>            <properties>                <activatedProperties>prod</activatedProperties>            </properties>        </profile>    </profiles></project>
 |