Maven 如何添加本地依赖

发布于 2021-11-30 11:21:21 字数 613 浏览 869 评论 3

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar']) // 像是这样添加本地文件夹依赖
    compile('io.socket:socket.io-client:0.7.0') {
        exclude group: 'org.json', module: 'json'
    }
    compile 'com.android.support:appcompat-v7:23.2.0'
    compile 'com.android.support:recyclerview-v7:23.2.0'
    compile 'com.android.support:design:23.2.0'
    compile 'com.google.android.gms:play-services-appindexing:8.1.0'

    testCompile 'junit:junit:4.12'
}

搜索过了 Maven 的好多插件,都没找到类似的方法,只有按照单个 jar 添加的本地 repo



如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

眼眸里的那抹悲凉 2021-12-03 20:26:25

引用来自“半个克林姆”的评论

你说的这种没用过,以下是我的用法

1, 把jar安装到地址仓库, 然后根据设置的坐标引入就可以了

mvn install:install-file -DgroupId=org.apache.httpcomponents -DartifactId=httpclient-osgi -Dversion=4.5.1 -Dpackaging=jar -Dfile=./httpclient-osgi-4.5.1.jar

2, 坐标可以随意写, 指定本地JAR路径

<dependency>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>test</version>
<scope>system</scope>
<systemPath>d:/test.jar</systemPath>
</dependency>

3, 还有更好的办法请告诉我

如日中天 2021-12-03 19:55:34

引用来自“半个克林姆”的评论

你说的这种没用过,以下是我的用法

1, 把jar安装到地址仓库, 然后根据设置的坐标引入就可以了

mvn install:install-file -DgroupId=org.apache.httpcomponents -DartifactId=httpclient-osgi -Dversion=4.5.1 -Dpackaging=jar -Dfile=./httpclient-osgi-4.5.1.jar

2, 坐标可以随意写, 指定本地JAR路径

<dependency>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>test</version>
<scope>system</scope>
<systemPath>d:/test.jar</systemPath>
</dependency>

3, 还有更好的办法请告诉我

绝影如岚 2021-12-03 16:10:37

你说的这种没用过,以下是我的用法

1, 把jar安装到地址仓库, 然后根据设置的坐标引入就可以了

mvn install:install-file -DgroupId=org.apache.httpcomponents -DartifactId=httpclient-osgi -Dversion=4.5.1 -Dpackaging=jar -Dfile=./httpclient-osgi-4.5.1.jar

2, 坐标可以随意写, 指定本地JAR路径

<dependency>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>test</version>
<scope>system</scope>
<systemPath>d:/test.jar</systemPath>
</dependency>

3, 还有更好的办法请告诉我

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文