Maven Jar 源码下载

来源:互联网 发布:淘宝客推广技术 编辑:程序博客网 时间:2024/06/06 08:24

Pom.xml


<build>    <plugins>        <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-eclipse-plugin</artifactId>                <version>2.9</version>                <configuration>                    <additionalProjectnatures>                        <projectnature>org.eclipse.jdt.core.javanature</projectnature>                        <projectnature>org.eclipse.m2e.core.maven2Nature</projectnature>                        <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>                    </additionalProjectnatures>                    <additionalBuildcommands>                        <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>                        <buildcommand>org.eclipse.m2e.core.maven2Builder</buildcommand>                        <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>                    </additionalBuildcommands>                </configuration>            </plugin>    </plugins></build>

mvn dependency:sources

mvn eclipse:eclipse

0 0
原创粉丝点击