mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Put optimization behind a profile as it won't currently work with JDK9
This commit is contained in:
parent
6ffb40e1fd
commit
c044a946e9
14
core/pom.xml
14
core/pom.xml
|
@ -35,6 +35,15 @@
|
|||
<version>3.2.2-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<name>ZXing Core</name>
|
||||
<description>Core barcode encoding/decoding library</description>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>proguard-library</id>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -48,9 +57,8 @@
|
|||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<name>ZXing Core</name>
|
||||
<description>Core barcode encoding/decoding library</description>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
||||
|
|
Loading…
Reference in a new issue