Only invoke GWT tools if gwt.sdk is defined

git-svn-id: https://zxing.googlecode.com/svn/trunk@2919 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen@gmail.com 2013-11-24 18:41:45 +00:00
parent 1a77226030
commit 65747f5178

View file

@ -38,6 +38,14 @@
<!-- TODO use Maven GWT plugin to actually build this -->
<profiles>
<profile>
<id>gwt</id>
<activation>
<property>
<name>gwt.sdk</name>
</property>
</activation>
<build>
<plugins>
<plugin>
@ -60,6 +68,8 @@
</plugin>
</plugins>
</build>
</profile>
</profiles>
<name>ZXing Appspot-based encoder</name>
<description>GWT-based encoder app hosted at zxing.appspot.com</description>