zoukankan      html  css  js  c++  java
  • maven指定本地的文件包

     maven指定本地的文件包

    案例:

    <!-- CKFinder begin -->
    <dependency>
    <groupId>net.coobird</groupId>
    <artifactId>thumbnailator</artifactId>
    <version>0.4.2</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/thumbnailator-0.4.2.jar</systemPath>
    </dependency>
    <dependency>
    <groupId>com.ckfinder</groupId>
    <artifactId>apache-ant-zip</artifactId>
    <version>2.3</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/apache-ant-zip-2.3.jar</systemPath>
    </dependency>
    <dependency>
    <groupId>com.ckfinder</groupId>
    <artifactId>ckfinder</artifactId>
    <version>2.3</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/ckfinder-2.3.jar</systemPath>
    </dependency>
    <dependency>
    <groupId>com.ckfinder</groupId>
    <artifactId>ckfinderplugin-fileeditor</artifactId>
    <version>2.3</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/ckfinderplugin-fileeditor-2.3.jar</systemPath>
    </dependency>
    <dependency>
    <groupId>com.ckfinder</groupId>
    <artifactId>ckfinderplugin-imageresize</artifactId>
    <version>2.3</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/ckfinderplugin-imageresize-2.3.jar</systemPath>
    </dependency>
    <!-- CKFinder end -->

  • 相关阅读:
    http-Content-Type
    ip地址和端口号
    node中的js-核心模块
    http-url 发送请求
    http 发送请求
    node http核心模块
    node 写文件
    bzoj-3170 3170: [Tjoi 2013]松鼠聚会(计算几何)
    codeforces 710E E. Generate a String(dp)
    codeforces 710C C. Magic Odd Square(构造)
  • 原文地址:https://www.cnblogs.com/anpajin/p/6380367.html
Copyright © 2011-2022 走看看