Maven使用本地dev jar

  • 背景
  • 过程
    • 上传到私服
    • 引用本地路径
    • 打包到本地仓库后引用
      • 插件引用
      • 有引用jar包的maven工程
      • 装逼的cmd

背景

一个本地开发的jar需要在一个maven工程中引用,引用过程中发生的一些问题。

过程

上传到私服

因为maven是下载使用,所以直接上传到私服。

  • M2_HOME/setting.xml
<server>

<id>deploymentid>

<username>deploymentusername>

<password>deployment账号的密码password>

server>
  • pom.xml
<distributionManagement>
<repository>
<id>nexus-snapshotsid>
<url>http://maven.dev.sh.马赛克.com:8081/nexus/content/repositories/snapshots/url>
repository>
distributionManagement>
  • mvn clean package deploy

果不其然的报错了,账号权限不够,限于高权限账号的申请,此路暂时不通。

引用本地路径

由于我是先获得jar包的,所以上传到私服不行直接给路径引用jar,而不是后文的发布到本地仓库。
引用本地jar大致分为两种:

  • 不推荐的暴力指定
    直接暴力指定,这样会破坏maven苦心构建的依赖管理架构。
<dependency>
    <groupId>samplegroupId>
    <artifactId>com.sampleartifactId>
    <version>1.0version>
    <scope>systemscope>
    <systemPath>${project.basedir}/src/main/resources/yourJar.jarsystemPath>
dependency>

暴力就暴力吧,反正这个jar的更新能掌握。警告!还好不是错误,但是警告总是不好的嘛。

[WARNING] 'dependencies.dependency.systemPath' for balabala... should not point at files within the project directory, ${project.basedir}/src/lib/bigdataqueryapi-client.jar will be unresolvable by dependent projects 

G之,发现正是maven推荐这样指定,maven更希望是用户从公(私)服或者本地仓库上引用一个jar包。

打包到本地仓库后引用

插件引用

暴力到底!

  • pom.xml
...
<dependency>
    <groupId>com.mylibgroupId>
    <artifactId>mylib-coreartifactId>
    <version>0.0.1version>
dependency>
...
<plugin>
    <groupId>org.apache.maven.pluginsgroupId>
    <artifactId>maven-install-pluginartifactId>
    <version>2.5.2version>
        <executions>
            <execution>
                <id>install-externalid>
                <phase>cleanphase>
                <configuration>
                    <file>${basedir}/lib/mylib-core-0.0.1.jarfile>
                    <repositoryLayout>defaultrepositoryLayout>
                    <groupId>com.mylibgroupId>
                    <artifactId>mylib-coreartifactId>
                    <version>0.0.1version>
                    <packaging>jarpackaging>
                    <generatePom>truegeneratePom>
                configuration>
                <goals>
                    <goal>install-filegoal>
                goals>
            execution>
        executions>
    plugin>

有引用jar包的maven工程

  • 优雅的install
    直接mvn clean package install,然后在pom中引用。果不其然的错误!
[ERROR] ...was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]

上述问题待解决

装逼的cmd

这么装逼的方法必须要试一试啊

mvn install:install-file -DgroupId=<com.yours> -DartifactId=<whosclient> -Dversion=<1.0> -Dpackaging=jar -Dfile=<file://D://lib//> -DgeneratePom=true

你可能感兴趣的:(瞎搞)