zoukankan      html  css  js  c++  java
  • SpringBoot maven install 添加本地包

        通过Eclipse ,将Springboot项目打JAR,添加本地JAR

        1、项目依赖本地JAR

      

        2、pom.xml中添加maven依赖:

          <dependency>
                <groupId>org.opencv</groupId>
                <artifactId>opencv</artifactId>
                <version>3.4.3</version>
                <scope>system</scope>
                <systemPath>${project.basedir}/src/main/resources/lib/opencv-343.jar</systemPath>
          </dependency>

        3、添加打包配置:

          <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                      <includeSystemScope>true</includeSystemScope>
                </configuration>
          </plugin>

  • 相关阅读:
    8 Range 对象
    7 Worksheet 对象
    6 Workbook 对象
    5 Application 对象
    Windows路径
    windows 下操作目录(使用DOS命令)
    Windows 批处理
    6 WPF控件
    Lexer and parser generators (ocamllex, ocamlyacc)
    4.9 Parser Generators
  • 原文地址:https://www.cnblogs.com/gulvzhe/p/12782546.html
Copyright © 2011-2022 走看看