0


idea将普通项目更改为maven项目的两种方式

今天写demo的时候发现自己建的项目不是maven项目,建时忘记了,demo已经写了很多了,于是找了几种普通项目更改成maven项目的方法。

  1. 右键工程文件,新建文件pom.xml,并填写好内容。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>net.javademo</groupId>
    <artifactId>javademo</artifactId>
    <packaging>pom</packaging>
    <version>1.0-SNAPSHOT</version>
    <properties>
    </properties>
    <!--指定子模块-->
    <modules>

    </modules>
    <dependencies>

    </dependencies>
    <dependencyManagement>
        <dependencies>

        </dependencies>
    </dependencyManagement>
    <build>
        <plugins>

        </plugins>
    </build>
    <!--    <repositories>-->
    <!--        <repository>-->
    <!--            <id>alimaven</id>-->
    <!--            <name>aliyun maven</name>-->
    <!--            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
    <!--        </repository>-->
    <!--    </repositories>-->
</project>
  1. 在pom.xml 文件上右键 Add as Maven Project。

3.idea自己导入maven。


本文转载自: https://blog.csdn.net/ding43930053/article/details/129312866
版权归原作者 D哈迪斯 所有, 如有侵权,请联系我们删除。

“idea将普通项目更改为maven项目的两种方式”的评论:

还没有评论