summaryrefslogtreecommitdiffstats
path: root/common.xml
diff options
context:
space:
mode:
authordenisanisimov <denis@vaadin.com>2014-01-29 11:05:04 +0200
committerdenisanisimov <denis@vaadin.com>2014-02-04 14:23:48 +0200
commita52b0ba902781e5daeffa4f9bc2e48f35eea2c35 (patch)
tree5276d4892d872b775c3429d798ab9703b3acc43b /common.xml
parent1583ba7c2a5ca0f4eff55aa5e6d2072e3583cceb (diff)
downloadvaadin-framework-a52b0ba902781e5daeffa4f9bc2e48f35eea2c35.tar.gz
vaadin-framework-a52b0ba902781e5daeffa4f9bc2e48f35eea2c35.zip
Use Logger instead of System.out and System.err (#10328).
Change-Id: Icf53bdb80caf7a6989b90cf5ce83dd328d3e73dd
Diffstat (limited to 'common.xml')
-rw-r--r--common.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/common.xml b/common.xml
index a1c086c57a..9104f57961 100644
--- a/common.xml
+++ b/common.xml
@@ -139,6 +139,7 @@
<fileset dir="${src}">
<patternset>
<include name="**/*.java" />
+ <include name="**/*.properties" />
</patternset>
</fileset>
<fileset refid="common.files.for.all.jars" />
@@ -184,7 +185,7 @@
<property name="src" location="{$result.dir}/../src" />
<union id="jar.files">
- <fileset dir="${classes}" excludes="${classes.exclude}" erroronmissingdir="false" />
+ <fileset dir="${classes}" excludes="${classes.exclude}" erroronmissingdir="false"/>
<fileset dir="${src}" excludes="${jar.exclude}" erroronmissingdir="false" />
<fileset refid="common.files.for.all.jars" />
<union refid="extra.jar.includes" />
@@ -277,6 +278,9 @@
<classpath refid="classpath.compile.dependencies" />
<classpath refid="classpath.compile.custom" />
</javac>
+ <copy todir="${classes}">
+ <fileset dir="${src}" includes="**/*.properties"/>
+ </copy>
</target>
<target name="exec-buildhelper" depends="compile">