码迷,mamicode.com
首页 > 编程语言 > 详细

Maven-生成可执行的Jar包

时间:2016-04-14 12:05:05      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:

<plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <executable>java</executable>          
                    <arguments>                       
                        <argument>-classpath</argument>
                        <classpath>
                        </classpath>
                        <argument>org.wuyechun.util.rktj.App</argument>
                    </arguments>
                </configuration>
</plugin>

 

Maven-生成可执行的Jar包

标签:

原文地址:http://www.cnblogs.com/wuyechun/p/5390439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!