mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 19:57:27 -08:00
Add test config to pom.xml
git-svn-id: https://zxing.googlecode.com/svn/trunk@2522 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
6f18b47af4
commit
703ce0d8e4
23
core/pom.xml
23
core/pom.xml
|
@ -55,8 +55,17 @@
|
|||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.10</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<sourceDirectory>src</sourceDirectory>
|
||||
<testSourceDirectory>test/src</testSourceDirectory>
|
||||
<outputDirectory>build</outputDirectory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -113,6 +122,17 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.12.4</version>
|
||||
<configuration>
|
||||
<!--<parallel>classes</parallel>-->
|
||||
<systemPropertyVariables>
|
||||
<explicitLuminanceConversion>true</explicitLuminanceConversion>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<distributionManagement>
|
||||
|
@ -155,4 +175,5 @@
|
|||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
</project>
|
||||
|
||||
|
|
Loading…
Reference in a new issue