zoukankan      html  css  js  c++  java
  • maven 的配置文件

    <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-resources-plugin</artifactId>
                    <version>2.4.3</version>
                    <configuration>
                        <encoding>UTF-8</encoding>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-dependency-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>copy</id>
                            <phase>install</phase>
                            <goals>
                                <goal>copy-dependencies</goal>
                            </goals>
                            <configuration>
                                <outputDirectory>
                                    ${project.build.directory}
                                </outputDirectory>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
            <pluginManagement>  
                <plugins>  
                <!-- Ignore/Execute plugin execution -->  
                      <plugin>  
                        <groupId>org.eclipse.m2e</groupId>  
                        <artifactId>lifecycle-mapping</artifactId>  
                        <version>1.0.0</version>  
                        <configuration>  
                            <lifecycleMappingMetadata>  
                                <pluginExecutions>  
                                    <!-- copy-dependency plugin -->  
                                    <pluginExecution>  
                                        <pluginExecutionFilter>  
                                            <groupId>org.apache.maven.plugins</groupId>  
                                            <artifactId>maven-dependency-plugin</artifactId>  
                                            <versionRange>[1.0.0,)</versionRange>  
                                            <goals>  
                                                <goal>copy-dependencies</goal>  
                                            </goals>  
                                        </pluginExecutionFilter>  
                                        <action>  
                                            <ignore />  
                                        </action>  
                                    </pluginExecution>  
                                </pluginExecutions>  
                            </lifecycleMappingMetadata>  
                        </configuration>  
                    </plugin>  
                   </plugins>  
              </pluginManagement> 
        </build>

  • 相关阅读:
    超详细的FreeRTOS移植全教程——基于srm32
    继续学习freertos消息队列
    FreeRTOS优化与错误排查方法
    从单片机到操作系统⑦——深入了解FreeRTOS的延时机制
    Android Pie 私人 DNS 使用教程
    「运维之美」技术周刊 ( 第 1 期 )
    「运维之美」技术周刊 ( 第 3 期 )
    用 Python 快速实现 HTTP 和 FTP 服务器
    关于ubuntu软件图标的问题
    You're currently running Fcitx with GUI 错误解决 Fcitx
  • 原文地址:https://www.cnblogs.com/happysky97/p/3230538.html
Copyright © 2011-2022 走看看