pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <parent>
  7. <groupId>com.google.protobuf.compatibility</groupId>
  8. <artifactId>compatibility-test-suite</artifactId>
  9. <version>2.5.0</version>
  10. <relativePath>..</relativePath>
  11. </parent>
  12. <groupId>com.google.protobuf.compatibility</groupId>
  13. <artifactId>compatibility-tests</artifactId>
  14. <version>2.5.0</version>
  15. <name>Compatibility Tests</name>
  16. <dependencies>
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.4</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.easymock</groupId>
  24. <artifactId>easymock</artifactId>
  25. <version>2.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.easymock</groupId>
  29. <artifactId>easymockclassextension</artifactId>
  30. <version>2.2.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.protobuf</groupId>
  34. <artifactId>protobuf-java</artifactId>
  35. <version>${tests.protobuf.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.google.protobuf.compatibility</groupId>
  39. <artifactId>compatibility-protos</artifactId>
  40. <version>2.5.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.google.protobuf.compatibility</groupId>
  44. <artifactId>compatibility-more-protos</artifactId>
  45. <version>2.5.0</version>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <configuration>
  53. <source>1.6</source>
  54. <target>1.6</target>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-surefire-plugin</artifactId>
  59. <configuration>
  60. <testSourceDirectory>${basedir}/src/main/java/</testSourceDirectory>
  61. <testClassesDirectory>${project.build.directory}/classes/</testClassesDirectory>
  62. <includes>
  63. <include>**/*Test.java</include>
  64. </includes>
  65. <workingDirectory>${protobuf.test.source.path}</workingDirectory>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>