pom.xml

<?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">
    <modelVersion>4.0.0</modelVersion>

    <groupId>demo</groupId>
    <artifactId>spring</artifactId>
    <version>1.0-SNAPSHOT</version>
    <properties>
        <sevenzipjbinding.version>9.20-2.00beta</sevenzipjbinding.version>
        <commons.io.version>2.0.1</commons.io.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>net.sf.sevenzipjbinding</groupId>
            <artifactId>sevenzipjbinding</artifactId>
            <version>${sevenzipjbinding.version}</version>
        </dependency>

        <dependency>
            <groupId>net.sf.sevenzipjbinding</groupId>
            <artifactId>sevenzipjbinding-all-platforms</artifactId>
            <version>${sevenzipjbinding.version}</version>
        </dependency>

        <dependency>
            <artifactId>commons-io</artifactId>
            <groupId>commons-io</groupId>
            <version>${commons.io.version}</version>
        </dependency>
    </dependencies>

</project>
View Code

相关文章:

  • 2021-05-21
  • 2021-07-29
  • 2021-07-22
  • 2021-06-15
  • 2021-06-17
  • 2022-12-23
  • 2022-12-23
  • 2021-10-26
猜你喜欢
  • 2021-07-31
  • 2021-07-20
  • 2021-05-06
  • 2021-09-30
  • 2021-12-04
  • 2022-01-09
  • 2021-09-24
相关资源
相似解决方案