maven pom.xml设置

作者: 世外大帝 | 来源:发表于2017-05-31 14:45 被阅读21次

    在idea下,本来可以直接用maven去模糊查找加载配置的,但是要精确的话还是自己在pom.xml配置好点

    今天遇到了一个问题,配置完了还是不行,找了半天,发现是环境变量的问题

            <!-- 一般的依赖 -->
            <dependency>
                <groupId>org.apache.commons</groupId>
                <artifactId>commons-lang3</artifactId>
                <version>3.0</version>
            </dependency>
    
            <!-- 添加环境的依赖 -->
            <dependency>
                <groupId>net.sf.json-lib</groupId>
                <artifactId>json-lib</artifactId>
                <version>2.2.3</version>
                <classifier>jdk15</classifier>
            </dependency>
    

    相关文章

      网友评论

        本文标题:maven pom.xml设置

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