mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 20:22:05 +01:00
Makefile: Added integration-est target and JAVA_TOOL_OPTIONS to set the correct file encoding
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13439 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
4402b8c7db
commit
55893400c7
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -1,5 +1,7 @@
|
|||
.PHONY: all clean test-unit eclipse
|
||||
|
||||
export JAVA_TOOL_OPTIONS:='-Dfile.encoding=iso-8859-1'
|
||||
|
||||
all: build-smack
|
||||
|
||||
# Can not use 'build' as target name, because there is a
|
||||
|
@ -10,9 +12,12 @@ build-smack:
|
|||
clean:
|
||||
cd build && ant clean
|
||||
|
||||
test-unit:
|
||||
unit-test:
|
||||
cd build && ant test-unit
|
||||
|
||||
integration-test:
|
||||
cd build && ant test
|
||||
|
||||
eclipse: .settings .classpath .project
|
||||
|
||||
.settings:
|
||||
|
|
Loading…
Reference in a new issue