Maven 打包源代码插件

来源:互联网 发布:一招成名天下知同义词 编辑:程序博客网 时间:2024/05/23 19:14
<plugin>                <artifactId>maven-source-plugin</artifactId>                <version>2.1</version>                <configuration>                    <attach>true</attach>                </configuration>                <executions>                    <execution>                        <phase>compile</phase>                        <goals>                            <goal>jar</goal>                        </goals>                    </execution>                </executions>            </plugin>


在pom.xml--><plugins>里面

0 0
原创粉丝点击