maven 记录

简介: clean compile //推荐使用UTF-8编译                                 org.apache.maven.plugins               maven-compiler-plugin               3.

clean compile

//推荐使用UTF-8编译

  <build>
      <plugins>
          <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-compiler-plugin</artifactId>
              <version>3.1</version>
            <configuration>
                <encoding>UTF-8</encoding>
            </configuration>
          </plugin>

 

clean install

 

clean package

//如果需要把依赖的lib都copy到一个位置

<!-- 把依赖的jar包拷到lib目录下 -->
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <id>copy-dependencies</id>
            <phase>package</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
            <configuration>
                <outputDirectory>${project.build.directory}/lib</outputDirectory>
                <overWriteReleases>false</overWriteReleases>
                <overWriteSnapshots>false</overWriteSnapshots>
                <overWriteIfNewer>true</overWriteIfNewer>
            </configuration>
        </execution>
    </executions>
</plugin>

 

如果修改一个项目(eframe)中的代码,修改完后需要 运行 clean install (如果有搭建私有仓库 运行 clean deploy)

目录
相关文章
|
Java Maven Windows
Maven 配置指南
Maven 配置指南
Maven 配置指南
|
8月前
|
Java Maven
向 Maven 中央仓库上传一个修改过的基于jeecg的autoPOI的 jar包记录(一)
向 Maven 中央仓库上传一个修改过的基于jeecg的autoPOI的 jar包记录
76 0
|
8月前
|
Java Maven
【Maven】下载配置maven以及IDEA配置maven详情
【Maven】下载配置maven以及IDEA配置maven详情
1170 0
|
8月前
|
Java Go Maven
向 Maven 中央仓库上传一个修改过的基于jeecg的autoPOI的 jar包记录(二)
向 Maven 中央仓库上传一个修改过的基于jeecg的autoPOI的 jar包记录
63 0
|
Java Maven
maven的配置
maven的配置
502 0
|
Java 应用服务中间件 Maven
|
IDE Java Maven
|
项目管理
Maven的配置和使用
一. 配置镜像加速 1.直接在项目中的pom文件中指定 aLiYun https://maven.
|
Java Maven
Maven - 报错篇
Maven - 报错篇
686 0
Maven - 报错篇
|
Java Maven
maven命令
maven命令
141 0

推荐镜像

更多