aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2014-12-02 18:00:26 -0800
committerFeng Xiao <xfxyjwf@gmail.com>2014-12-02 18:00:26 -0800
commit77931993f4fbb6f7e46327934e1f65c2b4f247eb (patch)
treeedbabdac44be8faa826192408043e2aa9dd1ff84
parenta451681937ba8f69b10fadbdae1f646a95434416 (diff)
downloadprotobuf-77931993f4fbb6f7e46327934e1f65c2b4f247eb.tar.gz
protobuf-77931993f4fbb6f7e46327934e1f65c2b4f247eb.tar.bz2
protobuf-77931993f4fbb6f7e46327934e1f65c2b4f247eb.zip
Explicitly list all Java lite runtime tests (and exclude those depending
TestUtil which transitively depend on the full runtime).
-rw-r--r--java/pom.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/java/pom.xml b/java/pom.xml
index a2bd1d1e..4ec6d776 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -198,8 +198,10 @@
<include>**/WireFormat.java</include>
</includes>
<testIncludes>
- <testInclude>**/**LiteTest.java</testInclude>
<testInclude>**/*Lite.java</testInclude>
+ <testInclude>**/LazyMessageLiteTest.java</testInclude>
+ <testInclude>**/LiteTest.java</testInclude>
+ <testInclude>**/UnknownFieldSetLiteTest.java</testInclude>
</testIncludes>
</configuration>
</plugin>
@@ -207,7 +209,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
- <include>**/**LiteTest.java</include>
+ <include>**/*Test.java</include>
</includes>
</configuration>
</plugin>