aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2013-06-14 15:26:38 +0100
committerNarayan Kamath <narayan@google.com>2013-06-14 15:26:38 +0100
commit967c738661ae14d2b0a73118fe1e3a755ce58e1b (patch)
treefc1e509ebdb6645676d28d97f8d8c74ef3273f7c /pom.xml
parentf663a5363330f46852e0837c2e85baf5c6637634 (diff)
downloadokhttp-967c738661ae14d2b0a73118fe1e3a755ce58e1b.tar.gz
Update okhttp to commit c84d84d1ca6911534fe993e
- Fixes a couple of test cases in URLConnectionTest related to null header values. - Fixes a locking related crash observed in tests. Change-Id: I8c48f29b33e3509d177c5ffb7d8b772dc97d8174
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml164
1 files changed, 34 insertions, 130 deletions
diff --git a/pom.xml b/pom.xml
index 0afcaa6..a36c2e6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,134 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Copyright (C) 2012 Square, Inc.
- Copyright (C) 2012 The Android Open Source Project
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
<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>
-
- <parent>
- <groupId>org.sonatype.oss</groupId>
- <artifactId>oss-parent</artifactId>
- <version>7</version>
- </parent>
- <groupId>com.squareup</groupId>
- <artifactId>okhttp</artifactId>
- <version>0.9-SNAPSHOT</version>
- <packaging>jar</packaging>
-
- <name>okhttp</name>
- <description>An HTTP+SPDY client for Android and Java applications</description>
- <url>https://github.com/square/okhttp</url>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-
- <!-- Compilation -->
- <java.version>1.6</java.version>
- <npn.version>8.1.2.v20120308</npn.version>
- <mockwebserver.version>20130122</mockwebserver.version>
- <bouncycastle.version>1.47</bouncycastle.version>
-
- <!-- Test Dependencies -->
- <junit.version>4.10</junit.version>
- </properties>
-
- <scm>
- <url>https://github.com/square/okhttp/</url>
- <connection>scm:git:https://github.com/square/okhttp.git</connection>
- <developerConnection>scm:git:git@github.com:square/okhttp.git</developerConnection>
- </scm>
-
- <issueManagement>
- <system>GitHub Issues</system>
- <url>https://github.com/square/okhttp/issues</url>
- </issueManagement>
-
- <licenses>
- <license>
- <name>Apache 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- </license>
- </licenses>
-
- <dependencies>
- <dependency>
- <groupId>org.mortbay.jetty.npn</groupId>
- <artifactId>npn-boot</artifactId>
- <version>${npn.version}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.google.mockwebserver</groupId>
- <artifactId>mockwebserver</artifactId>
- <version>${mockwebserver.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>${bouncycastle.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.5</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <version>2.9.1</version>
- <configuration>
- <failsOnError>true</failsOnError>
- <configLocation>checkstyle.xml</configLocation>
- <consoleOutput>true</consoleOutput>
- <excludes>**/OsConstants.java</excludes>
- </configuration>
- <executions>
- <execution>
- <phase>verify</phase>
- <goals>
- <goal>checkstyle</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.9</version>
- <configuration>
- <argLine>-Xbootclasspath/p:${settings.localRepository}/org/mortbay/jetty/npn/npn-boot/${npn.version}/npn-boot-${npn.version}.jar</argLine>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>com.squareup.okhttp</groupId>
+ <artifactId>parent</artifactId>
+ <version>1.0.3-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>okhttp</artifactId>
+ <name>OkHttp</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.mortbay.jetty.npn</groupId>
+ <artifactId>npn-boot</artifactId>
+ <optional>true</optional>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk15on</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.google.mockwebserver</groupId>
+ <artifactId>mockwebserver</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
-