1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <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"> 4 <modelVersion>4.0.0</modelVersion> 5 6 <parent> 7 <groupId>com.squareup.okhttp</groupId> 8 <artifactId>parent</artifactId> 9 <version>2.0.0-SNAPSHOT</version> 10 </parent> 11 12 <artifactId>mockwebserver</artifactId> 13 <name>MockWebServer</name> 14 15 <dependencies> 16 <dependency> 17 <groupId>com.squareup.okhttp</groupId> 18 <artifactId>okhttp</artifactId> 19 <version>${project.version}</version> 20 </dependency> 21 <dependency> 22 <groupId>org.bouncycastle</groupId> 23 <artifactId>bcprov-jdk15on</artifactId> 24 </dependency> 25 <dependency> 26 <groupId>org.mortbay.jetty.npn</groupId> 27 <artifactId>npn-boot</artifactId> 28 <optional>true</optional> 29 </dependency> 30 <dependency> 31 <groupId>junit</groupId> 32 <artifactId>junit</artifactId> 33 <scope>test</scope> 34 </dependency> 35 </dependencies> 36 37 <build> 38 <plugins> 39 <plugin> 40 <groupId>org.apache.maven.plugins</groupId> 41 <artifactId>maven-assembly-plugin</artifactId> 42 <configuration> 43 <descriptorRefs> 44 <descriptorRef>jar-with-dependencies</descriptorRef> 45 </descriptorRefs> 46 </configuration> 47 <executions> 48 <execution> 49 <phase>package</phase> 50 <goals> 51 <goal>single</goal> 52 </goals> 53 </execution> 54 </executions> 55 </plugin> 56 </plugins> 57 </build> 58 </project> 59