maven help:system

Posted xlongwei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven help:system相关的知识,希望对你有一定的参考价值。

lifecycle:http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html

bindings:http://maven.apache.org/ref/3.5.0/maven-core/default-bindings.html

技术分享图片  技术分享图片

mvn docker:help –Ddetail | less

mvn docker:build –DskipDocker=false

技术分享图片

 

 

 

<skipDocker>true</skipDocker>
<docker.plugin.version>0.4.13</docker.plugin.version>
<docker.image.prefix>spring-boot-cloud</docker.image.prefix>
<plugin>
    <groupId>com.spotify</groupId>
    <artifactId>docker-maven-plugin</artifactId>
    <version>${docker.plugin.version}</version>
    <executions>
        <execution>
            <phase>package</phase>
            <goals>
                <goal>build</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <imageName>${docker.image.prefix}/${project.artifactId}</imageName>
        <dockerDirectory>${project.basedir}/</dockerDirectory>
        <skipDocker>${skipDocker}</skipDocker>
        <resources>
            <resource>
                <targetPath>/</targetPath>
                <directory>${project.build.directory}</directory>
                <include>${project.build.finalName}.jar</include>
            </resource>
        </resources>
    </configuration>
</plugin>

 

以上是关于maven help:system的主要内容,如果未能解决你的问题,请参考以下文章

maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段

Jacoco和Tycho surefire的Eclipse RCP插件代码介绍

在cmd下执行mvn help:system 报错

Spring+SpringMVC+MyBatis+Maven框架整合

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段

如何在 Apache Felix maven-bundle-plugin 中设置 Provide-Capability 标头?