eclipse中maven打包

Posted 胖子学习天地

tags:

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

第一种方式:将依赖包打包进一个jar包中。

  <build>
      <plugins>
          <plugin>
              <artifactId>maven-compiler-plugin</artifactId>
              <configuration>
                  <source>1.7</source>
                  <target>1.7</target>
                  <encoding>${project.build.sourceEncoding}</encoding>   
              </configuration>
          </plugin>
          <plugin>  
            <artifactId>maven-assembly-plugin</artifactId>  
            <configuration>  
              <descriptorRefs>  
                <descriptorRef>jar-with-dependencies</descriptorRef>  
              </descriptorRefs>  
              <archive>    
                <manifest>    
                    <mainClass>com.xx.kafka.GWProducer</mainClass>  
                </manifest>  
            </archive>  
        </configuration>  
        <executions>  
          <execution>  
            <id>make-assembly</id> <!-- this is used for inheritance merges -->  
            <phase>package</phase> <!-- bind to the packaging phase -->  
            <goals>  
              <goal>single</goal>  
            </goals>  
          </execution>  
        </executions>  
       </plugin>  
      </plugins>
  </build>

第二种方式: 将依赖包单独放到lib文件夹中

 

 

以上是关于eclipse中maven打包的主要内容,如果未能解决你的问题,请参考以下文章

eclipse工具maven项目打包文件不是最新修改的

eclipse maven打包war

eclipse编程java项目中调用了maven。现在怎么打包成可执行程序?

如何从 Eclipse 在 Tomcat 中运行 Maven 项目

eclipse 打包maven项目的坑

maven打包版本号问题