pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <name>Compatibility Test Dependencies</name>
  10. <dependencies>
  11. <dependency>
  12. <groupId>junit</groupId>
  13. <artifactId>junit</artifactId>
  14. <version>4.4</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.easymock</groupId>
  18. <artifactId>easymock</artifactId>
  19. <version>2.2</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.easymock</groupId>
  23. <artifactId>easymockclassextension</artifactId>
  24. <version>2.2.1</version>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-assembly-plugin</artifactId>
  31. <version>2.6</version>
  32. <configuration>
  33. <descriptorRefs>
  34. <descriptorRef>jar-with-dependencies</descriptorRef>
  35. </descriptorRefs>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>