Skip to content
This repository has been archived by the owner on Feb 20, 2018. It is now read-only.

Commit

Permalink
Fix pom dependency scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
jottley committed Jul 25, 2012
1 parent 2beda64 commit 7de8fbd
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pom.xml
@@ -1,7 +1,7 @@
<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>
<artifactId>spring-social-google-docs</artifactId>
<version>1.1.1-RELEASE</version>
<version>1.1.2-RELEASE</version>
<name>spring-social-google-docs</name>
<groupId>org.springframework.social</groupId>
<url>https://github.com/jottley/spring-social-google-docs</url>
Expand All @@ -10,11 +10,13 @@
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.social</groupId>
<artifactId>spring-social-core</artifactId>
<version>1.0.2.RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
Expand All @@ -26,7 +28,8 @@
<artifactId>spring-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -37,23 +40,26 @@
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.8.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>11.0.2</version>
<scope>provided</scope>
</dependency>
<!-- horrible ugliness -->
<dependency>
<groupId>com.google.gdata</groupId>
<artifactId>com.google.gdata.gdata-client</artifactId>
Expand Down

0 comments on commit 7de8fbd

Please sign in to comment.