This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
73 lines (67 loc) · 2.37 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.code</groupId>
<artifactId>opensocial-java-client</artifactId>
<version>1.16.3-bod-SNAPSHOT</version>
<packaging>jar</packaging>
<name>opensocial-java-client</name>
<description>opensocial-java-client</description>
<parent>
<groupId>nl.surfnet.bod</groupId>
<artifactId>bod-parent-pom</artifactId>
<version>0.1.1</version>
</parent>
<properties>
<commons-codec.version>1.4</commons-codec.version>
<easymock.version>2.5.2</easymock.version>
<json-simle.version>1.1</json-simle.version>
<oauth.version>20090825</oauth.version>
<orgjson.version>20080701</orgjson.version>
</properties>
<scm>
<developerConnection>scm:git:[email protected]:BandwidthOnDemand/opensocial-java-client.git</developerConnection>
<connection>scm:git:[email protected]:BandwidthOnDemand/opensocial-java-client.git</connection>
<url>https://github.com/BandwidthOnDemand/opensocial-java-client</url>
<tag>HEAD</tag>
</scm>
<repositories>
<repository>
<id>oauth-maven-repo</id>
<name>OAuth Maven repository</name>
<url>http://oauth.googlecode.com/svn/code/maven</url>
<layout>default</layout>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons-codec.version}</version>
</dependency>
<dependency>
<groupId>com.google.code</groupId>
<artifactId>json-simple</artifactId>
<version>${json-simle.version}</version>
</dependency>
<dependency>
<groupId>net.oauth</groupId>
<artifactId>oauth-core</artifactId>
<version>${oauth.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${orgjson.version}</version>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>${easymock.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>