-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
71 lines (64 loc) · 2.53 KB
/
pom.xml
File metadata and controls
71 lines (64 loc) · 2.53 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
<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>org.tynamo.gae</groupId>
<artifactId>esxx-httpclient-gae</artifactId>
<name>Tynamo packaged ESXX httpclient support for GAE</name>
<packaging>jar</packaging>
<version>0.0.2-SNAPSHOT</version>
<description>Tynamo packaged httpclient support for Google App Engine from esxx.org</description>
<parent>
<groupId>org.tynamo</groupId>
<artifactId>tynamo-parent</artifactId>
<version>0.0.6</version>
</parent>
<licenses>
<license>
<name>GNU Lesser General Public License, version 3.0</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-api-1.0-sdk</artifactId>
<version>1.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1-beta1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<!-- Skip javadoc execution because it fails on: http://jira.codehaus.org/browse/MJAVADOC-274. There's package-private class, is that reason?
Anyway, javadoc is not needed.
Update, 2.6, 2.6.1 and 2.7 javadoc plugins fail to generate javadoc, but codehaus nexus requires javadoc to be available. So hacked it in
by adding Empty.java class, next time try to upgrade to a new javadoc plugin. Remove this whole block if works
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
-->
<distributionManagement>
<site>
<id>tynamo-site</id>
<!-- Note the url. Only static files deployed in /constant/ can be decorated by Unity -->
<url>dav:https://dav.codehaus.org/tynamo/constant/sites/esxx-httpclient-gae</url>
</site>
</distributionManagement>
<scm>
<connection>scm:svn:http://svn.codehaus.org/tynamo/trunk/esxx-httpclient-gae</connection>
<developerConnection>scm:svn:https://svn.codehaus.org/tynamo/trunk/esxx-httpclient-gae</developerConnection>
<url>http://svn.tynamo.codehaus.org/tynamo/trunk/esxx-httpclient-gae</url>
</scm>
</project>