이 미러 목록을 최신 상태로 유지하려면 편집하십시오.
필요한 모든 항아리가 포함 maven
된 zip
파일 에서 직접 다운로드 할 수있는 이 저장소를 찾았습니다 .
대체 솔루션 : Maven
내가 선호하는 솔루션은를 사용하는 Maven
것입니다. 쉽고 각각 따로 다운로드 할 필요가 없습니다 jar
. 다음 단계로 수행 할 수 있습니다.
예를 들어 원하는 이름으로 빈 폴더를 만듭니다. spring-source
라는 새 파일을 만듭니다. pom.xml
아래의 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
jar 를 다운로드 하려면 해당 웹 페이지 로 이동하여 dependency
구성을에 추가 pom.xml
dependencies
한 다음 mvn install
다시 실행 하십시오.
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>spring-webflow</artifactId>
<version>2.3.2.RELEASE</version>
</dependency>