并不是所有的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

doc


codecraft
11.9k 声望2k 粉丝

当一个代码的工匠回首往事时,不因虚度年华而悔恨,也不因碌碌无为而羞愧,这样,当他老的时候,可以很自豪告诉世人,我曾经将代码注入生命去打造互联网的浪潮之巅,那是个很疯狂的时代,我在一波波的浪潮上留下...


引用和评论

0 条评论