码迷,mamicode.com
首页 > 编程语言 > 详细

maven笔记-将本地jar包打包进可执行jar中

时间:2017-08-17 17:17:26      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:class   local   1.0   desc   version   name   config   www.   生成   

参考资料:http://www.cnblogs.com/richard-jing/archive/2013/01/27/Maven_localjar.html

使用本地jar

<dependencies>
   <dependency>
     <groupId>org.richard</groupId>
     <artifactId>my-jar</artifactId>
     <version>1.0</version>
     <scope>system</scope>
     <systemPath>${project.basedir}/lib/my-jar.jar</systemPath>
   </dependency>
</dependencies>

注意:system scope引入的包,在使用jar-with-dependencies打包时将不会被包含,可以使用resources将本地包打进jar-with-dependencies

<build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <descriptorRefs>
                <descriptorRef>jar-with-dependencies</descriptorRef>
              </descriptorRefs>
              <finalName>xxx-jar-with-dependencies</finalName>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
     <resources>
      <resource>
        <targetPath>lib/</targetPath>
        <directory>lib/</directory>
        <includes>
          <include>**/my-jar.jar</include>
        </includes>
      </resource>
    </resources>
  </build>

生成的xxx-jar-with-dependencies.jar中,将会包含lib目录以及my-jar.jar,并且能够被在执行的时候被找到。

maven笔记-将本地jar包打包进可执行jar中

标签:class   local   1.0   desc   version   name   config   www.   生成   

原文地址:http://www.cnblogs.com/gnivor/p/7382560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!