Maven config for 1.0.0.M3
Guys,
I'm starting a project to interact with Facebook or Twitter and I would like to use the latest milestone.
After configure Maven for one of the components, I'm getting:
Code:
Missing artifact org.springframework:spring-aop:jar:3.1.0.M1:compile
The POM configuration is this:
Code:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<org.springframework.social-version>1.0.0.M3</org.springframework.social-version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.social</groupId>
<artifactId>spring-social-core</artifactId>
<version>${org.springframework.social-version}</version>
</dependency>
<dependency>
<groupId>org.springframework.social</groupId>
<artifactId>spring-social-facebook</artifactId>
<version>${org.springframework.social-version}</version>
</dependency>
</dependencies>
<repositories>
<!-- For developing against latest Spring milestones -->
<repository>
<id>org.springframework.maven.milestone</id>
<name>Spring Maven Milestone Repository</name>
<url>http://maven.springframework.org/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
I will really appreciate your help on this,
Thanks !