idea做的项目如何导到my eclipse里去?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea做的项目如何导到my eclipse里去?相关的知识,希望对你有一定的参考价值。

参考技术A 不管是哪个工具其实项目都是存在本地硬盘中的,在my eclipse选择导入这个项目就行了。

IDEA maven 项目如何上传到私服仓库

前言:idea maven 发布版本到私服(快照和正式版)。我有个项目( jar 包源码),其他 maven 项目能直接引入依赖就最好了,所以必须将这个 jar 包源码发布到 maven 私服仓库里去。这里记录一下。

一、发布版本

<version>1.0-SNAPSHOT</version>

在 pom 文件中添加如下代码:

    <!--发布到私服: 设置 version 后,选择 maven 的 deploy 命令-->
    <distributionManagement>
        <repository>
            <id>nexus</id>
            <name>nexus Repository RELEASES</name>
            <url>http://127.0.0.1:8081/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>nexus</id>
            <name>nexus Repository SNAPSHOTS</name>
            <url>http://127.0.0.1:8081/nexus/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

然后,idea maven 的 选择设置好的 setting.xml 文件

 

最后,在 idea maven 中选择 deploy 命令

 

参考文档:https://www.cnblogs.com/rwxwsblog/p/6029636.html

以上是关于idea做的项目如何导到my eclipse里去?的主要内容,如果未能解决你的问题,请参考以下文章

idea项目如何导入eclipse?

idea相关设置使用

在eclipse中buildpath选项没有了怎么都调不出来

eclipse与idea中classpath配置路径不同导致迁移项目时的FileNotFoundException问题

如何将idea工程导入eclipse

如何将多个Eclipse项目导入IntelliJ IDEA