• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
20    <protos.protoc.path>${protoc.path}</protos.protoc.path>
21    <protos.protobuf.version>${protobuf.version}</protos.protobuf.version>
22
23    <more_protos.protoc.path>${protoc.path}</more_protos.protoc.path>
24    <more_protos.protobuf.version>${protobuf.version}</more_protos.protobuf.version>
25
26    <tests.protobuf.version>${protobuf.version}</tests.protobuf.version>
27
28    <protobuf.test.source.path>.</protobuf.test.source.path>
29  </properties>
30</project>
31