zoukankan      html  css  js  c++  java
  • 如何改变maven项目的pom文件中默认的主代码目录 以及默认的测试代码目录?

    zhaodao.baidu.com:
     
    <project>
    ...
    <build>
    <!-- 默认的主代码目录 -->
    <sourceDirectory>src/main/java</sourceDirectory>
    <!-- 默认的测试代码目录 -->
    <testSourceDirectory>src/test/java</testSourceDirectory>
    ...
    </build>
    ...
    </project>
     
     
    ***************************************8
    NoGoalSpecifiedException
    Well, this just tells you that Maven has no idea what it should do. In general, you have the following options to perform build steps:
    Invoke a lifecycle phase, e.g.
    mvn install
     
     
    This runs the lifecycle phase install and all its predecessor phases like compile and test. Please see Introduction to the Build Lifecycle for more information about available lifecycle phases.
    Invoke a plugin goal via the plugin prefix, e.g.
    mvn compiler:compile
     
     
    Eventually, the plugin prefix translates to a group id and artifact id of a plugin. Maven resolves plugin prefixes by first looking at the plugins of the current project's POM and next by checking the metadata of user-defined plugin groups.
    Invoke a plugin goal via the versionless plugin coordinates, e.g.
    mvn org.apache.maven.plugins:maven-compiler-plugin:compile
     
     
    To resolve the plugin version, Maven will first check the project's POM and fallback to the latest release version of the plugin that was deployed to the configured plugin repositories.
    Invoke a plugin goal via the fully qualified plugin coordinates, e.g.
    mvn org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile
     
     
    You can freely mix all of these styles within a single command line but you have to specify at least one goal/phase to get Maven going. Alternatively, you can define a default goal in your POM as shown below:
    <project>
      ...
      <build>
        <defaultGoal>install</defaultGoal>
        ...
      </build>
      ...
    </project>
     
     
  • 相关阅读:
    三种实现AJAX的方法以及Vue和axios结合使用的坑
    一个简陋的个人小项目,也是个人第一个真正意义上的独立项目——Graph
    使用docsify并定制以使它更强大
    使用particles.js实现网页背景粒子特效
    使用nginx和tomcat配置反向代理和动静分离
    php (zip)文件下载设置
    php 获取当前完整url地址
    php 实现重定向的三种方式
    php 查看使用多少内存
    linux 查看系统信息
  • 原文地址:https://www.cnblogs.com/huapox/p/3251609.html
Copyright © 2011-2022 走看看