pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  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-suite</artifactId>
  8. <version>2.5.0</version>
  9. <name>Protocol Buffer Java API compatibility tests</name>
  10. <packaging>pom</packaging>
  11. <modules>
  12. <module>protos</module>
  13. <module>more_protos</module>
  14. <module>tests</module>
  15. </modules>
  16. <properties>
  17. <protoc.path>protoc</protoc.path>
  18. <protobuf.version>2.5.0</protobuf.version>
  19. <protos.protoc.path>${protoc.path}</protos.protoc.path>
  20. <protos.protobuf.version>${protobuf.version}</protos.protobuf.version>
  21. <more_protos.protoc.path>${protoc.path}</more_protos.protoc.path>
  22. <more_protos.protobuf.version>${protobuf.version}</more_protos.protobuf.version>
  23. <tests.protobuf.version>${protobuf.version}</tests.protobuf.version>
  24. <protobuf.test.source.path>.</protobuf.test.source.path>
  25. </properties>
  26. </project>