1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 5 <modelVersion>4.0.0</modelVersion> 6 <groupId>com.google.protobuf.compatibility</groupId> 7 <artifactId>compatibility-test-deps</artifactId> 8 <version>2.5.0</version> 9 10 <name>Compatibility Test Dependencies</name> 11 12 <dependencies> 13 <dependency> 14 <groupId>junit</groupId> 15 <artifactId>junit</artifactId> 16 <version>4.4</version> 17 </dependency> 18 <dependency> 19 <groupId>org.easymock</groupId> 20 <artifactId>easymock</artifactId> 21 <version>2.2</version> 22 </dependency> 23 <dependency> 24 <groupId>org.easymock</groupId> 25 <artifactId>easymockclassextension</artifactId> 26 <version>2.2.1</version> 27 </dependency> 28 </dependencies> 29 30 <build> 31 <plugins> 32 <plugin> 33 <artifactId>maven-assembly-plugin</artifactId> 34 <version>2.6</version> 35 <configuration> 36 <descriptorRefs> 37 <descriptorRef>jar-with-dependencies</descriptorRef> 38 </descriptorRefs> 39 </configuration> 40 </plugin> 41 </plugins> 42 </build> 43</project> 44