SpringSource.org将其网站更改为http://spring.io
有人知道如何在没有Maven / github的情况下获得最新版本吗?来自http://spring.io/projects
答案 0 :(得分:221)
我找到了这个maven
repo,你可以直接下载一个包含你需要的所有jar的zip
文件。
我更喜欢的解决方案是使用Maven
,这很简单,您不必单独下载每个jar
。您可以通过以下步骤完成此操作:
spring-source
pom.xml
spring-source
文件夹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>
此外,如果您需要下载任何其他春季项目,只需从相应的网页复制dependency
配置。
例如,如果您要下载Spring Web Flow
个罐子,请转到web page,然后将其dependency
配置添加到pom.xml
dependencies
,然后再次运行mvn install
。
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>spring-webflow</artifactId>
<version>2.3.2.RELEASE</version>
</dependency>