1
nutting OP parent 里还有 parent,很多级
|
2
RagingSweet 2020-11-30 10:32:16 +08:00 1
ali 有个 maven 私库批量迁移工具,migrate-local-repo-tool.jar ,可以试试,挺好用的
|
3
cs419 2020-11-30 11:10:00 +08:00
不一定要放仓库 也可以是本地文件
方案 1 ``` <dependency> <groupId>fluffy.mo</groupId> <artifactId>hello</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/world.jar</systemPath> </dependency> ``` 方案 2 ``` <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArguments> <extdirs>src\main\webapp\WEB-INF\lib</extdirs> </compilerArguments> </configuration> </plugin> </plugins> </build> ``` |
4
bianjp 2020-11-30 12:46:25 +08:00
如果 Maven 私服使用的是 Nexus OSS, 那么它支持导入 Maven 仓库: https://help.sonatype.com/repomanager3/system-configuration/tasks/repository-import
|
5
zhangsen1992 2020-11-30 13:43:22 +08:00
nexus 有批量导入
|