SpringSource.org将其站点更改为http://spring.io
有人知道如何在没有Maven / github的情况下获取最新版本吗?来自http://spring.io/projects
请编辑以使此镜像列表保持最新 我找到了这个maven仓库,你可以在其中直接从zip包含所需jar的文件中下载文件。
maven
zip
替代解决方案:Maven 我更喜欢使用的解决方案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"> <modelVersion>4.0.0</modelVersion> <groupId>spring-source-download</groupId> <artifactId>SpringDependencies</artifactId> <version>1.0</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>3.2.4.RELEASE</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.8</version> <executions> <execution> <id>download-dependencies</id> <phase>generate-resources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/dependencies</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
另外,如果你需要下载其他任何Spring项目,只需dependency从相应的网页复制配置即可。
dependency
例如,如果要下载Spring Web Flowjar,请转至其网页,然后将其dependency配置添加到中pom.xml dependencies,然后mvn install再次运行。
Spring Web Flowjar
pom.xml dependencies
<dependency> <groupId>org.springframework.webflow</groupId> <artifactId>spring-webflow</artifactId> <version>2.3.2.RELEASE</version> </dependency>