SpringSource.org는 사이트를 http://spring.io로 변경했습니다 .
누군가 Maven / github없이 최신 빌드를 얻는 방법을 알고 있습니까? 에서 http://spring.io/projects
답변
이 미러 목록을 최신 상태로 유지하려면 편집하십시오.
필요한 모든 항아리가 포함 maven
된 zip
파일 에서 직접 다운로드 할 수있는 이 저장소를 찾았습니다 .
- http://maven.springframework.org/release/org/springframework/spring/
- http://repo.spring.io/release/org/springframework/spring/
대체 솔루션 : 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>