maven help 插件
maven help 插件
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-help-plugin</artifactId>
            <version>3.2.0</version>
        </plugin>
    </plugins>
</build>
D:\tools\jdk\bin\java.exe -Dmaven.multiModuleProjectDirectory=E:\mozq\demo_project\shiro\http_01 -Dmaven.home=E:\mozq\apache-maven-3.6.1 -Dclassworlds.conf=E:\mozq\apache-maven-3.6.1\bin\m2.conf "-javaagent:D:\tools\idea\IntelliJ IDEA 2019.1.3\lib\idea_rt.jar=53111:D:\tools\idea\IntelliJ IDEA 2019.1.3\bin" -Dfile.encoding=UTF-8 -classpath E:\mozq\apache-maven-3.6.1\boot\plexus-classworlds-2.6.0.jar org.codehaus.classworlds.Launcher -Didea.version2019.1.3 -s E:\mozq\apache-maven-3.6.1\conf\settings.xml org.apache.maven.plugins:maven-help-plugin:3.2.0:effective-settings
[INFO] Scanning for projects...
[INFO]
[INFO] -----------------------< com.mozq.http:http_01 >------------------------
[INFO] Building http_01 0.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-help-plugin:3.2.0:effective-settings (default-cli) @ http_01 ---
[INFO]
Effective user-specific configuration settings:
<?xml version="1.0" encoding="UTF-8"?>
<!-- ====================================================================== -->
<!--                                                                        -->
<!-- Generated by Maven Help Plugin on 2019-12-12T17:56:24+08:00            -->
<!-- See: http://maven.apache.org/plugins/maven-help-plugin/                -->
<!--                                                                        -->
<!-- ====================================================================== -->
<!-- ====================================================================== -->
<!--                                                                        -->
<!-- Effective Settings for '1' on 'DESKTOP-3H9092J'                        -->
<!--                                                                        -->
<!-- ====================================================================== -->
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
  <localRepository>E:\mozq\apache-maven-3.6.1\repo</localRepository>
  <mirrors>
    <mirror>
      <mirrorOf>central</mirrorOf>
      <name>internal nexus repository</name>
      <url>http://repo.maven.apache.org/maven2</url>
      <id>nexus</id>
    </mirror>
    <mirror>
      <mirrorOf>central</mirrorOf>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <id>alimaven</id>
    </mirror>
    <mirror>
      <mirrorOf>central</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://uk.maven.org/maven2/</url>
      <id>uk</id>
    </mirror>
    <mirror>
      <mirrorOf>central</mirrorOf>
      <name>OSChina Central</name>
      <url>http://maven.oschina.net/content/groups/public/</url>
      <id>CN</id>
    </mirror>
  </mirrors>
  <profiles>
    <profile>
      <repositories>
        <repository>
          <releases />
          <snapshots>
            <updatePolicy>always</updatePolicy>
          </snapshots>
          <id>boundlessgeo</id>
          <url>https://repo.boundlessgeo.com/main/</url>
        </repository>
      </repositories>
      <id>boundlessgeo</id>
    </profile>
    <profile>
      <repositories>
        <repository>
          <releases />
          <snapshots>
            <updatePolicy>always</updatePolicy>
          </snapshots>
          <id>aliyun</id>
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        </repository>
      </repositories>
      <id>aliyun</id>
    </profile>
    <profile>
      <repositories>
        <repository>
          <releases />
          <snapshots>
            <updatePolicy>always</updatePolicy>
          </snapshots>
          <id>maven-central</id>
          <url>http://central.maven.org/maven2/</url>
        </repository>
      </repositories>
      <id>maven-central</id>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>boundlessgeo</activeProfile>
    <activeProfile>aliyun</activeProfile>
    <activeProfile>maven-central</activeProfile>
  </activeProfiles>
  <pluginGroups>
    <pluginGroup>org.apache.maven.plugins</pluginGroup>
    <pluginGroup>org.codehaus.mojo</pluginGroup>
  </pluginGroups>
</settings>
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  2.180 s
[INFO] Finished at: 2019-12-12T17:56:25+08:00
[INFO] ------------------------------------------------------------------------
												
											maven help 插件的更多相关文章
- Maven 的插件和生命周期的绑定
		
一.Maven 的生命周期 Maven 的生命周期是对所有的构建过程进行抽象和统一.Maven 的生命周期是抽象的,这意味着生命周期本身不做任何实际的工作,生命周期只是定义了一系列的阶段,并确定这些阶 ...
 - 【转】Maven Jetty 插件的问题(css/js等目录死锁)的解决
		
Maven Jetty 插件的问题(css/js等目录死锁,不能自动刷新)的解决: 1. 打开下面的目录:C:\Users\用户名\.m2\repository\org\eclipse\jetty ...
 - maven常用插件pom配置
		
一.问题描述: 部署一个maven打包项目时,jar包,依赖lib包全部手动上传至服务器,然后用maven部署报错:Exception in thread "main" java. ...
 - maven+mybatis-generator插件反向生成源代码
		
通过maven+mybatis-generator插件反向生成源代码,如有一个table表为resource,那么将自动生成这样三个文件:Resource.java类.ResourceMapper.j ...
 - idea maven jetty插件热部署
		
maven tomcat插件好像无法进行热部署,jetty可以如下配置实现热部署,但是idea无法进行自动编译,所以需要如下快捷键 Ctrl+Shift+F9,编译 Ctrl+F9,生成项目 < ...
 - Maven配置插件跳过测试代码的编译和运行
		
Maven配置插件跳过测试代码的编译和运行: <!-- 编译插件 --> <plugin> <groupId>org.apache.maven.plugins< ...
 - 自己动手编写Maven的插件
		
Maven的插件机制是完全依赖Maven的生命周期的,因此理解生命周期至关重要.本文参考官方文档后使用archetype创建,手动创建太麻烦. 创建创建项目 选择maven-archetype-moj ...
 - IDEA集成有道翻译插件/maven帮助插件/mybatis插件
		
(一)IDEA集成有道翻译插件:https://www.cnblogs.com/a8457013/p/7814335.html 插件下载地址:http://plugins.jetbrains.com/ ...
 - 使用maven的插件进行maven项目的打包
		
1 maven项目打包的插件有3种 maven-jar-plugin maven-assembly-plugin maven-shade-plugin 2 maven-jar-plugin 现在要新增 ...
 - Maven 默认插件以及功能
		
Maven 默认插件 已知 Maven 使用 plugin 来执行实际操作的,在默认情况下,Maven 会绑定以下几个插件来完成基本操作. plugin function life cycle pha ...
 
随机推荐
- Ligg.EasyWinApp-102-Ligg.EasyWinForm:Function--ControlBox、Tray、Resize、Menu
			
首先请在VS里打开下面的文件,我们将对源码分段进行说明: Function(功能):一个应用的功能界面,一个应用对应多个Function(功能):如某应用可分为管理员界面.用户界面. 首先我们来看一下 ...
 - JS---课程介绍 + JavaScript分三个部分
			
Web API---课程介绍 DOM: 概念-----能够说出来--理解 作用----记住了----后来理解 回顾JS分几个部分---知道 DOM树---能够说出 ...
 - javascript中常见的几种循环遍历
			
项目开发中,不管是建立在哪个框架基础上,对数据的处理都是必须的,而处理数据离不开各种遍历循环.javascript中循环遍历有很多种方式,记录下几种常见的js循环遍历. 一.for循环 for循环应该 ...
 - vue - Error: Can't resolve '@/assets/img/github.svg (vue-cli3.0,无法解析.svg图片,已解决)
			
用vue脚手架(vue-cli3.0)生成的目录,无法解析.svg图片的问题 <img src="@/assets/img/github.svg" alt="git ...
 - How to use special characters in XML?
			
https://dvteclipse.com/documentation/svlinter/How_to_use_special_characters_in_XML.3F.html Because X ...
 - 1.2 菜单权限 ——MyRapid WinForm快速开发框架-功能介绍
			
添加菜单后用户并不会看到菜单 需要经过授权后才能看到 授权界面如图 授权的数据逻辑可以理解为一个键值对 角色>>菜单 但是为了方便集中数据管理 我设计成了 角色>>资源 其中的 ...
 - PHP计算二维数组指定元素的和
			
array_sum(array_column($arr, 'num')); //计算二维数组指定元素的和 $arr = [ [ 'id'=>1, 'num'=>3, ], [ 'id'=& ...
 - win10系统怎么设置软件开机启动
			
win10开机自动启动软件设置教程: 1:在windows10桌面,右键点击桌面左下角的开始按钮,在弹出的菜单中选择运行菜单项. 2:这时就会打开windows10的运行窗口,在窗口中输入命令shel ...
 - IT兄弟连 HTML5教程 CSS3揭秘 在HTML文档中放置CSS的几种方式
			
有很多方法将样式表加入到HTML中,每种方法都有自己的优点和缺点.新的HTML元素和属性已被加入,以允许样式表与HTML文档更简易地组合起来.将样式表加入到HTML中的常用方法有内联样式表.嵌入一张样 ...
 - 从数据表字段 float 和 double 说起
			
今天在公司讨论项目重构的问题时,公司的 DBA 针对表中的字段大概介绍了一下 float 和 double 的存储方式.然后,我发现这个问题又回到了浮点数类型在内存中的存储方式,即 IEEE 对浮点数 ...