序
并不是所有的jar包都能在maven仓库下载,另外有些场景也不好使用私有仓库,那么这种情况下,如何把这些外部的jar也通过maven管理起来呢。
使用maven-install-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
实例
在maven工程根目录新建lib文件夹,里头有个demo.jar纳入管理
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>install-demo-jar</id>
<phase>clean</phase>
<configuration>
<repositoryLayout>default</repositoryLayout>
<groupId>com.example</groupId>
<artifactId>demojar</artifactId>
<version>1.0.0</version>
<file>${project.basedir}/lib/demo.jar</file>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>
安装
mvn clean install
添加依赖
<dependency>
<groupId>com.example</groupId>
<artifactId>demojar</artifactId>
<version>1.0.0</version>
</dependency>
这样就大功告成了,可以打成fat jar
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。