Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a public Maven repository that contains spring-core 3 yet?

Is there a public Maven repository that contains spring-core 3 yet?

I can find 2.5.4 all day long but not 3. If there answer is yes, please include the location in the answer.

like image 255
stevedbrown Avatar asked Oct 08 '09 15:10

stevedbrown


People also ask

Which is the most popular public Maven repository?

Containing over three million maven artifacts, Maven Central is one of the world's largest and oldest public repositories. It is the default repository that the maven client contacts when building a maven project.

What is the public repository name of Maven?

Maven Central, a.k.a. the Central Repository, is the default repository for Maven, SBT, Leiningen, and many other JVM based build tools. It has been around since 2002, and serves many terabytes of assets every year. Maven Central also has a search site.

What is the latest version of spring-core?

What is the latest Spring Framework version? The current stable version, as of July 2022, is Spring 5.3. 22.

How do you add spring-core dependency in POM XML?

Open the Maven Project Object Model (POM) file and select the Dependencies tab. Use the The Central Repository website to find the Dependency Information for spring-core and Spring-context artifacts (jar files). Add… both Spring Dependencies to the pom.


2 Answers

You can get the milestones and release candidates from Spring's Maven repository. The repository is difficult to browse, but the files are there, e.g. the spring-core 3.0.0.RC1 pom

Here is an example repository declaration and dependency:

<repositories>
 <repository>
  <id>springsource maven repo</id>
  <url>http://maven.springframework.org/milestone</url>
 </repository>
</repositories>

...
<dependencies>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>3.0.0.RC1</version>
  </dependency>
</dependencies>
like image 70
Rich Seller Avatar answered Oct 20 '22 21:10

Rich Seller


Since the question was asked, the Spring Enterprise Bundle Repository has been put online and is easier to browse.

Browse by Library, and then by Spring Framework, and you'll find what you're looking for.

<repository>  
  <id>com.springsource.repository.bundles.release</id>  
  <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>  
  <url>http://repository.springsource.com/maven/bundles/release</url> 
</repository>
...
<dependency>  
  <groupId>org.springframework</groupId>  
  <artifactId>org.springframework.core</artifactId>  
  <version>3.0.2.RELEASE</version> 
</dependency>
like image 40
Rydell Avatar answered Oct 20 '22 20:10

Rydell