| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570 | <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">    <modelVersion>4.0.0</modelVersion>    <groupId>org.jeecgframework.boot</groupId>    <artifactId>jeecg-boot-parent</artifactId>    <version>2.0.2</version>    <packaging>pom</packaging>    <parent>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-parent</artifactId>        <version>2.2.3.RELEASE</version>        <relativePath/>    </parent>    <modules>        <module>jeecg-boot-base-common</module>        <module>module-common</module>        <module>jeecg-boot-module-activiti</module>        <module>module-crawler</module>        <module>module-kuaishou</module>        <module>module-toutiao</module>        <module>module-shiwan</module>        <module>module-alarm</module>        <module>module-media</module>        <module>module-ctop</module>        <module>performance-appraisal</module>        <module>module-check</module>        <module>module-oa</module>        <module>jeecg-boot-module-system</module>        <module>module-job-bytedance</module>        <module>module-job-kuaishou</module>        <module>module-callback</module>    </modules>    <distributionManagement>        <repository>            <id>jeecg</id>            <name>jeecg Repository</name>            <url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>        </repository>        <snapshotRepository>            <id>jeecg-snapshots</id>            <name>jeecg Snapshot Repository</name>            <url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>        </snapshotRepository>    </distributionManagement>    <repositories>        <repository>            <id>bintray-americanexpress-maven</id>            <url>https://dl.bintray.com/americanexpress/maven</url>        </repository>        <repository>            <id>aliyun</id>            <name>aliyun Repository</name>            <url>http://maven.aliyun.com/nexus/content/groups/public</url>            <snapshots>                <enabled>false</enabled>            </snapshots>        </repository>        <repository>            <id>jeecg</id>            <name>jeecg Repository</name>            <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>            <snapshots>                <enabled>false</enabled>            </snapshots>        </repository>        <repository>            <id>maven-3rdparty</id>            <url>https://packages.atlassian.com/maven-3rdparty/</url>        </repository>        <repository>            <id>ctop</id>            <url>http://118.24.244.213:8081/repository/3rd_part</url>        </repository>    </repositories>    <pluginRepositories>        <pluginRepository>            <snapshots>                <enabled>true</enabled>            </snapshots>            <id>ctop</id>            <url>http://118.24.244.213:8081/repository/3rd_part</url>        </pluginRepository>    </pluginRepositories>    <properties>        <jeecgboot.common.version>2.0.2</jeecgboot.common.version>        <java.version>1.8</java.version>        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>        <mybatis-plus.version>3.1.2</mybatis-plus.version>        <druid.version>1.1.10</druid.version>        <commons.version>2.6</commons.version>        <aliyun-java-sdk-core.version>3.5.0</aliyun-java-sdk-core.version>        <aliyun-java-sdk-dysmsapi.version>1.0.0</aliyun-java-sdk-dysmsapi.version>    </properties>    <dependencies>        <!--集成springmvc框架并实现自动配置 -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>            <exclusions>                <exclusion>                    <groupId>ch.qos.logback</groupId>                    <artifactId>logback-classic</artifactId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-mail</artifactId>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>        </dependency>        <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-aop</artifactId>    </dependency>        <!-- 第三方登录 -->        <dependency>            <groupId>com.xkcoding.justauth</groupId>            <artifactId>justauth-spring-boot-starter</artifactId>            <version>1.3.2</version>            <exclusions>                <exclusion>                    <artifactId>fastjson</artifactId>                    <groupId>com.alibaba</groupId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-actuator</artifactId>        </dependency>        <!-- commons -->        <dependency>            <groupId>commons-io</groupId>            <artifactId>commons-io</artifactId>            <version>${commons.version}</version>        </dependency>        <dependency>            <groupId>commons-lang</groupId>            <artifactId>commons-lang</artifactId>            <version>${commons.version}</version>        </dependency>        <dependency>            <groupId>com.google.guava</groupId>            <artifactId>guava</artifactId>            <version>26.0-jre</version>        </dependency>        <!-- freemarker -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-freemarker</artifactId>        </dependency>        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>easyexcel</artifactId>            <version>1.1.2-beat1</version>        </dependency>        <!-- Lombok -->        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>        </dependency>        <dependency>            <groupId>com.bstek.ureport</groupId>            <artifactId>ureport2-console</artifactId>            <version>2.2.9</version>        </dependency>        <!-- mybatis-plus -->        <dependency>            <groupId>com.baomidou</groupId>            <artifactId>mybatis-plus-boot-starter</artifactId>            <version>${mybatis-plus.version}</version>        </dependency>        <dependency>            <groupId>com.baomidou</groupId>            <artifactId>mybatis-plus-extension</artifactId>            <version>${mybatis-plus.version}</version>        </dependency>        <!-- druid -->        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>druid-spring-boot-starter</artifactId>            <version>${druid.version}</version>        </dependency>        <!-- 动态数据源 -->        <dependency>            <groupId>com.baomidou</groupId>            <artifactId>dynamic-datasource-spring-boot-starter</artifactId>            <version>2.5.4</version>        </dependency>        <!-- json -->        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>fastjson</artifactId>            <version>1.2.56</version>        </dependency>        <dependency>            <groupId>com.github.pagehelper</groupId>            <artifactId>pagehelper-spring-boot-starter</artifactId>            <!-- 特别注意版本问题 -->            <version>1.2.3</version>        </dependency>        <!--mysql-->        <dependency>            <groupId>mysql</groupId>            <artifactId>mysql-connector-java</artifactId>            <version>5.1.47</version>            <scope>runtime</scope>        </dependency>        <!--sqlserver-->        <dependency>            <groupId>net.sourceforge.jtds</groupId>            <artifactId>jtds</artifactId>            <version>1.3.1</version>            <scope>runtime</scope>        </dependency>        <dependency>            <groupId>com.microsoft.sqlserver</groupId>            <artifactId>mssql-jdbc</artifactId>            <version>7.2.1.jre8</version>            <scope>runtime</scope>        </dependency>        <!-- mini文件存储服务 -->        <dependency>            <groupId>io.minio</groupId>            <artifactId>minio</artifactId>            <version>4.0.0</version>            <exclusions>                <exclusion>                    <artifactId>guava</artifactId>                    <groupId>com.google.guava</groupId>                </exclusion>                <exclusion>                    <artifactId>jsr305</artifactId>                    <groupId>com.google.code.findbugs</groupId>                </exclusion>            </exclusions>        </dependency>        <!-- Quartz定时任务 -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-quartz</artifactId>        </dependency>        <!--JWT-->        <dependency>            <groupId>com.auth0</groupId>            <artifactId>java-jwt</artifactId>            <version>3.7.0</version>        </dependency>        <!--shiro-->        <dependency>            <groupId>org.apache.shiro</groupId>            <artifactId>shiro-spring-boot-starter</artifactId>            <version>1.4.0</version>        </dependency>        <!-- Swagger API文档 -->        <dependency>            <groupId>io.springfox</groupId>            <artifactId>springfox-swagger2</artifactId>            <version>2.9.2</version>        </dependency>        <dependency>            <groupId>io.springfox</groupId>            <artifactId>springfox-swagger-ui</artifactId>            <version>2.9.2</version>        </dependency>        <dependency>            <groupId>com.github.xiaoymin</groupId>            <artifactId>swagger-bootstrap-ui</artifactId>            <version>1.9.3</version>        </dependency>        <dependency>            <groupId>io.springfox</groupId>            <artifactId>springfox-bean-validators</artifactId>            <version>2.9.2</version>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-devtools</artifactId>            <scope>runtime</scope>            <optional>true</optional>        </dependency>        <!-- Redis -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-data-redis</artifactId>        </dependency>        <dependency>            <groupId>org.apache.commons</groupId>            <artifactId>commons-pool2</artifactId>        </dependency>        <!-- 代码生成器 -->        <!-- 如果下载失败,看这个链接http://jeecg-boot.mydoc.io/?t=344850 -->        <dependency>            <groupId>org.jeecgframework.boot</groupId>            <artifactId>codegenerate</artifactId>            <version>1.2.0</version>        </dependency>        <!-- AutoPoi Excel工具类-->        <dependency>            <groupId>org.jeecgframework</groupId>            <artifactId>autopoi-web</artifactId>            <version>1.1.1</version>            <exclusions>                <exclusion>                    <groupId>commons-codec</groupId>                    <artifactId>commons-codec</artifactId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>org.apache.httpcomponents</groupId>            <artifactId>httpclient</artifactId>            <version>4.5.9</version>        </dependency>        <dependency>            <groupId>javax.persistence</groupId>            <artifactId>javax.persistence-api</artifactId>            <version>2.2</version>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-data-jpa</artifactId>        </dependency>        <dependency>            <groupId>org.apache.httpcomponents</groupId>            <artifactId>httpcore</artifactId>            <version>4.4</version>        </dependency>        <dependency>            <groupId>com.squareup.retrofit2</groupId>            <artifactId>retrofit</artifactId>            <version>2.6.0</version>        </dependency>        <dependency>            <groupId>org.apache.pdfbox</groupId>            <artifactId>fontbox</artifactId>            <version>2.0.15</version>        </dependency>        <dependency>            <groupId>org.seleniumhq.selenium</groupId>            <artifactId>selenium-java</artifactId>            <version>3.141.59</version>        </dependency>        <dependency>            <groupId>org.seleniumhq.selenium</groupId>            <artifactId>selenium-firefox-driver</artifactId>            <version>3.141.59</version>        </dependency>        <dependency>            <groupId>org.json</groupId>            <artifactId>json</artifactId>            <version>LATEST</version>        </dependency>        <dependency>            <groupId>com.github.binarywang</groupId>            <artifactId>weixin-java-cp</artifactId>            <version>3.6.0</version>        </dependency>        <dependency>            <groupId>us.codecraft</groupId>            <artifactId>webmagic-core</artifactId>            <version>0.7.3</version>        </dependency>        <dependency>            <groupId>us.codecraft</groupId>            <artifactId>webmagic-extension</artifactId>            <version>0.7.3</version>        </dependency>        <dependency>            <groupId>net.sourceforge.htmlunit</groupId>            <artifactId>htmlunit</artifactId>            <version>2.36.0</version>        </dependency>        <dependency>            <groupId>io.appium</groupId>            <artifactId>java-client</artifactId>            <version>7.2.0</version>        </dependency>        <!--        <dependency>-->        <!--            <groupId>io.aexp.nodes.graphql</groupId>-->        <!--            <artifactId>nodes</artifactId>-->        <!--            <version>0.4.0</version>-->        <!--        </dependency>-->        <dependency>            <groupId>commons-codec</groupId>            <artifactId>commons-codec</artifactId>            <version>1.11</version>        </dependency>        <!-- mini文件存储服务 -->        <dependency>            <groupId>io.minio</groupId>            <artifactId>minio</artifactId>            <version>4.0.0</version>            <exclusions>                <exclusion>                    <artifactId>guava</artifactId>                    <groupId>com.google.guava</groupId>                </exclusion>                <exclusion>                    <artifactId>jsr305</artifactId>                    <groupId>com.google.code.findbugs</groupId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-all</artifactId>            <version>4.5.11</version>        </dependency>        <!-- 阿里云短信 -->        <dependency>            <groupId>com.aliyun</groupId>            <artifactId>aliyun-java-sdk-dysmsapi</artifactId>            <version>${aliyun-java-sdk-dysmsapi.version}</version>        </dependency>        <dependency>            <groupId>com.aliyun</groupId>            <artifactId>aliyun-java-sdk-core</artifactId>            <version>${aliyun-java-sdk-core.version}</version>        </dependency>        <dependency>            <groupId>com.aliyun.oss</groupId>            <artifactId>aliyun-sdk-oss</artifactId>            <version>2.8.3</version>        </dependency>        <dependency>            <groupId>com.aliyun</groupId>            <artifactId>aliyun-java-sdk-mts</artifactId>            <version>2.5.2</version>        </dependency>        <dependency>            <groupId>org.bytedeco</groupId>            <artifactId>javacv</artifactId>            <version>1.4.2</version>        </dependency>        <dependency>            <groupId>org.bytedeco</groupId>            <artifactId>javacv-platform</artifactId>            <version>1.4.2</version>        </dependency>        <!--<dependency>            <groupId>com.qcloud</groupId>            <artifactId>cos_api</artifactId>            <version>5.6.24</version>        </dependency>-->        <dependency>            <groupId>com.tencentcloudapi</groupId>            <artifactId>tencentcloud-sdk-java</artifactId>            <version>3.1.62</version><!-- 注:这里只是示例版本号,请获取并替换为 最新的版本号 -->        </dependency>    </dependencies>    <dependencyManagement>        <dependencies>            <!-- jeecg-boot-base-common -->            <dependency>                <groupId>org.jeecgframework.boot</groupId>                <artifactId>jeecg-boot-base-common</artifactId>                <version>${jeecgboot.common.version}</version>            </dependency>        </dependencies>    </dependencyManagement>    <build>        <plugins>            <!--<plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>            </plugin>             指定JDK编译版本 -->            <plugin> <!--groovy的编译--> <!--https://github.com/groovy/GMavenPlus/wiki/Examples-->                <groupId>org.codehaus.gmavenplus</groupId>                <artifactId>gmavenplus-plugin</artifactId>                <version>1.6.1</version>                <executions>                    <execution>                        <goals>                            <goal>addSources</goal>                            <goal>addTestSources</goal>                            <goal>generateStubs</goal>                            <goal>generateTestStubs</goal>                            <goal>compile</goal>                            <goal>compileTests</goal>                            <goal>removeStubs</goal>                            <goal>removeTestStubs</goal>                        </goals>                    </execution>                </executions>            </plugin>            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-compiler-plugin</artifactId>                <configuration>                    <source>1.8</source>                    <target>1.8</target>                    <encoding>UTF-8</encoding>                </configuration>            </plugin>            <!-- 打包跳过测试 -->            <plugin>		        <groupId>org.apache.maven.plugins</groupId>		        <artifactId>maven-surefire-plugin</artifactId>		        <configuration>		          <skipTests>true</skipTests>		        </configuration>	        </plugin><!--	         <!– 避免font文件的二进制文件格式压缩破坏 –>--><!--	         <plugin>--><!--                <groupId>org.apache.maven.plugins</groupId>--><!--                <artifactId>maven-resources-plugin</artifactId>--><!--                <configuration>--><!--                    <nonFilteredFileExtensions>--><!--                        <nonFilteredFileExtension>woff</nonFilteredFileExtension>--><!--                        <nonFilteredFileExtension>woff2</nonFilteredFileExtension>--><!--                        <nonFilteredFileExtension>eot</nonFilteredFileExtension>--><!--                        <nonFilteredFileExtension>ttf</nonFilteredFileExtension>--><!--                        <nonFilteredFileExtension>svg</nonFilteredFileExtension>--><!--                    </nonFilteredFileExtensions>--><!--                </configuration>--><!--            </plugin>-->        </plugins>        <resources>            <resource>                <directory>src/main/resources</directory>                <filtering>true</filtering>            </resource>            <resource>                <directory>src/main/java</directory>                <includes>                    <include>**/*.xml</include>                    <include>**/*.json</include>                    <include>**/*.ftl</include>                </includes>            </resource>        </resources>    </build></project>
 |