美文网首页
maven 创建web工程

maven 创建web工程

作者: 微笑中的你 | 来源:发表于2020-04-11 11:40 被阅读0次

勾选 Create from archetype

列表中 选择 maven-archetype-webapp

添加设置 archetypeCatalog=internal

enable auto import

maven settings.xml修改镜像地址为阿里的,当然你够快也可以不用这么做

    <mirror>
        <id>alimaven</id>
        <name>aliyun maven</name>
        <url>
            http://maven.aliyun.com/nexus/content/groups/public/
        </url>
        <mirrorOf>central</mirrorOf>
    </mirror>

相关文章

网友评论

      本文标题:maven 创建web工程

      本文链接:https://www.haomeiwen.com/subject/hfzemhtx.html