SpringSource.org将其站点更改为http://spring.io
有人知道如何在没有Maven / github的情况下获取最新版本吗?来自http://spring.io/projects
我找到了这个maven仓库,您可以在其中直接从zip包含所需jar的文件中下载文件。
maven
zip
我更喜欢使用的解决方案Maven,它很容易,您不必jar单独下载每个解决方案。您可以按照以下步骤操作:
Maven
jar
spring-source
pom.xml
mvn install
/spring-source/target/dependencies
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0 spring-source-download SpringDependencies 1.0 UTF-8 org.springframework spring-context 3.2.4.RELEASE org.apache.maven.plugins maven-dependency-plugin 2.8 download-dependencies generate-resources copy-dependencies ${project.build.directory}/dependencies
另外,如果您需要下载其他任何Spring项目,只需dependency从其相应的网页复制配置即可。
dependency
例如,如果要下载Spring Web Flowjar,请转至其网页,然后将其dependency配置添加到中pom.xml dependencies,然后mvn install再次运行。
Spring Web Flow
dependencies
<dependency> <groupId>org.springframework.webflow</groupId> <artifactId>spring-webflow</artifactId> <version>2.3.2.RELEASE</version> </dependency>