-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
45 lines (35 loc) · 1 KB
/
build.xml
File metadata and controls
45 lines (35 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!--
Confidential
2018 , Inc.
All Rights Reserved.
This file is subject to the terms and conditions defined in
file 'license.txt', which is part of this source code package.
Contributors :
- General Release
-->
<project name="jalopy_prety_print_build" default="all" basedir=".">
<target name="all" depends="pretty-print"/>
<property environment="os"/>
<!-- Jalopy / Pretty Print properties -->
<!-- Jalopy Task Definition -->
<taskdef name="jalopy"
classname="de.hunsicker.jalopy.plugin.ant.AntPlugin">
<classpath>
<pathelement path="${runtime_classpath}"/>
</classpath>
</taskdef>
<!--
**** Pretty print formats source files
-->
<target name="pretty-print"
description="Pretty printing source files...">
<jalopy
failonerror="false"
loglevel="ERROR">
<fileset dir="${project.build.sourceDirectory}">
<include name="**/*.java"/>
<exclude name="**/Application.java" />
</fileset>
</jalopy>
</target>
</project>