• maven


    check http://www.cnblogs.com/xdp-gacl/p/3498271.html


    mvn archetype:generate -DgroupId=com.java.samples -DartifactId=JavaSamples -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

    This maven command will create a Java project with the below details:

    • groupId will be com.java.samples, representing the package.
    • artifactId will be JavaSamples (on the build, JavaSamples.jar will be created)
    • archetypeArtifactId is nothing but the template used for creating this Java project.
    • interactiveMode is used when the developer is aware of the actual spelling of the artifact id. In the above case maven-archetype-quickstart is the one which is used and it is the proper one. If developer is not aware of this then the interactiveMode is set to be TRUE so that it will scan the remote repositories for all available archetypes. This might take longer time

    Provided Archetypes

    Maven provides several Archetype artifacts:

    Archetype ArtifactIdsDescription
    maven-archetype-archetype An archetype to generate a sample archetype project.
    maven-archetype-j2ee-simple An archetype to generate a simplifed sample J2EE application.
    maven-archetype-mojo An archetype to generate a sample a sample Maven plugin.
    maven-archetype-plugin An archetype to generate a sample Maven plugin.
    maven-archetype-plugin-site An archetype to generate a sample Maven plugin site.
    maven-archetype-portlet An archetype to generate a sample JSR-268 Portlet.
    maven-archetype-quickstart An archetype to generate a sample Maven project.
    maven-archetype-simple An archetype to generate a simple Maven project.
    maven-archetype-site An archetype to generate a sample Maven site which demonstrates some of the supported document types like APT, XDoc, and FML and demonstrates how to i18n your site.
    maven-archetype-site-simple An archetype to generate a sample Maven site.
    maven-archetype-webapp An archetype to generate a sample Maven Webapp project.

    Jacoco plugin:

    http://www.javaworld.com/article/2074515/core-java/unit-test-code-coverage-with-maven-and-jacoco.html

      

  • 相关阅读:
    [翻译]XNA 3.0 Game Programming Recipes之fiftynine
    [翻译]XNA 3.0 Game Programming Recipes之fiftyseven
    [翻译]XNA 3.0 Game Programming Recipes之fiftyeight
    [翻译]XNA外文博客文章精选之two
    [翻译]XNA 3.0 Game Programming Recipes之fiftyfour
    [翻译]XNA 3.0 Game Programming Recipes之fiftythree
    [翻译]XNA外文博客文章精选之three
    [翻译]XNA 3.0 Game Programming Recipes之fiftysix
    [翻译]XNA 3.0 Game Programming Recipes之fiftyfive
    [翻译]XNA外文博客文章精选之one
  • 原文地址:https://www.cnblogs.com/morningdew/p/5628295.html
Copyright © 2020-2023  润新知