| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | <?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">    <parent>        <artifactId>platform</artifactId>        <groupId>com.zcxk</groupId>        <version>1.0-SNAPSHOT</version>        <relativePath>../../pom.xml</relativePath>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>zoniot-core-utils</artifactId>    <version>1.0-SNAPSHOT</version>    <packaging>jar</packaging>    <properties>        <java.version>1.8</java.version>    </properties>    <dependencies>        <dependency>            <groupId>org.apache.httpcomponents</groupId>            <artifactId>httpclient</artifactId>        </dependency>        <dependency>            <groupId>com.zcxk</groupId>            <artifactId>zoniot-core-common</artifactId>        </dependency>        <dependency>            <groupId>org.apache.commons</groupId>            <artifactId>commons-lang3</artifactId>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-all</artifactId>            <version>5.7.8</version>        </dependency>        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>easyexcel</artifactId>            <version>2.2.6</version>            <exclusions>                <exclusion>                    <groupId>com.alibaba</groupId>                    <artifactId>fastjson</artifactId>                </exclusion>                <exclusion>                    <groupId>org.projectlombok</groupId>                    <artifactId>lombok</artifactId>                </exclusion>                <exclusion>                    <groupId>org.springframework.boot</groupId>                    <artifactId>spring-boot</artifactId>                </exclusion>                <exclusion>                    <groupId>org.springframework.boot</groupId>                    <artifactId>spring-boot-starter-web</artifactId>                </exclusion>            </exclusions>        </dependency>    </dependencies>    <build>        <plugins>            <!--编译插件 -->            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-compiler-plugin</artifactId>                <configuration>                    <source>8</source>                    <target>8</target>                    <encoding>utf-8</encoding>                </configuration>            </plugin>            <!--打包插件-->            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <executions>                    <execution>                        <goals>                            <goal>repackage</goal>                        </goals>                    </execution>                </executions>                <configuration>                    <skip>true</skip>                </configuration>            </plugin>        </plugins>    </build></project>
 |