| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | <?xml version="1.0" encoding="UTF-8"?><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xmlns="http://maven.apache.org/POM/4.0.0"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <parent>        <artifactId>imcs-admin-boot</artifactId>        <groupId>com.github.zuihou</groupId>        <version>b.2.5-SNAPSHOT</version>        <relativePath>../</relativePath>    </parent>    <properties>        <cfx.version>3.1.6</cfx.version>        <jcifs.version>1.3.14-kohsuke-1</jcifs.version>    </properties>    <modelVersion>4.0.0</modelVersion>    <groupId>com.github.zuihou</groupId>    <artifactId>imcs-common</artifactId>    <name>${project.artifactId}</name>    <description>公共模块</description>    <dependencies>        <dependency>            <groupId>com.github.zuihou</groupId>            <artifactId>zuihou-core</artifactId>        </dependency>        <!-- apache ftp支持  -->        <dependency>            <groupId>commons-net</groupId>            <artifactId>commons-net</artifactId>            <version>3.6</version>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot</artifactId>            <optional>true</optional>            <scope>compile</scope>        </dependency>        <dependency>            <groupId>org.apache.cxf</groupId>            <artifactId>cxf-rt-frontend-jaxws</artifactId>            <version>${cfx.version}</version>        </dependency>        <dependency>            <groupId>org.apache.cxf</groupId>            <artifactId>cxf-rt-transports-http</artifactId>            <version>${cfx.version}</version>        </dependency>        <dependency>            <groupId>org.samba.jcifs</groupId>            <artifactId>jcifs</artifactId>            <version>${jcifs.version}</version>        </dependency>        <dependency>            <groupId>com.google.zxing</groupId>            <artifactId>core</artifactId>            <version>3.3.0</version>        </dependency>        <dependency>            <groupId>com.google.zxing</groupId>            <artifactId>javase</artifactId>            <version>3.3.0</version>        </dependency>        <!-- 必须有这个jar 才能提示 -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-configuration-processor</artifactId>            <optional>true</optional>            <scope>compile</scope>        </dependency>        <dependency>            <groupId>ch.ethz.ganymed</groupId>            <artifactId>ganymed-ssh2</artifactId>            <version>262</version>        </dependency>    </dependencies></project>
 |