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