-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
122 lines (102 loc) · 3.48 KB
/
pom.xml
File metadata and controls
122 lines (102 loc) · 3.48 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<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">
<parent>
<groupId>net.dontdrinkandroot</groupId>
<artifactId>parent</artifactId>
<version>4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lastfmapi</artifactId>
<version>0.4.4-SNAPSHOT</version>
<description>Java Bindings for the last.fm API</description>
<developers>
<developer>
<name>Philip Washington Sorst</name>
<url>http://sorst.net</url>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<repositories>
<repository>
<id>public</id>
<url>http://maven.dontdrinkandroot.net/content/groups/public</url>
</repository>
</repositories>
<scm>
<developerConnection>scm:git:https://github.com/dontdrinkandroot/lastfmapi.git</developerConnection>
</scm>
<properties>
<org.apache.httpcomponents.httpclient.version>4.2.2</org.apache.httpcomponents.httpclient.version>
<com.melloware.jspiff.version>1.0</com.melloware.jspiff.version>
<org.ccil.cowan.tagsoup.version>1.2.1</org.ccil.cowan.tagsoup.version>
<dom4j.version>1.6.1</dom4j.version>
<jaxen.version>1.1.4</jaxen.version>
<net.dontdrinkandroot.utils.version>0.2.0</net.dontdrinkandroot.utils.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<systemPropertyVariables>
<lfm.api.key>${lfm.api.key}</lfm.api.key>
<lfm.api.secret>${lfm.api.secret}</lfm.api.secret>
<lfm.api.user.name>${lfm.api.user.name}</lfm.api.user.name>
<lfm.api.user.password>${lfm.api.user.password}</lfm.api.user.password>
<lfm.api.user.subscriber>${lfm.api.user.subscriber}</lfm.api.user.subscriber>
<lfm.api.run.authtests>${lfm.api.run.authtests}</lfm.api.run.authtests>
<lfm.api.run.posttests>${lfm.api.run.posttests}</lfm.api.run.posttests>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${org.apache.httpcomponents.httpclient.version}</version>
</dependency>
<dependency>
<groupId>net.dontdrinkandroot</groupId>
<artifactId>utils</artifactId>
<version>${net.dontdrinkandroot.utils.version}</version>
</dependency>
<dependency>
<groupId>com.melloware</groupId>
<artifactId>jspiff</artifactId>
<version>${com.melloware.jspiff.version}</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.ccil.cowan.tagsoup</groupId>
<artifactId>tagsoup</artifactId>
<version>${org.ccil.cowan.tagsoup.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>${dom4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>${jaxen.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>