@@ -8,11 +8,12 @@ HoneyAnt is an incremental [Ant](http://ant.apache.org/) build plugin for [Eclip
8
8
When you save a Java file, HoneyAnt runs its build script automatically.
9
9
10
10
This plugin provides similar functions to APT (Annotation Processing Tool), but HoneyAnt is more powerful and freely !
11
- You can run ** any** Ant build script when you change the Java file. File generation, testing, etc, etc ...
11
+ You can run ** any** Ant build script when you change the annotated Java file. File generation, testing, etc, etc ...
12
12
13
13
If it is an incremental build (after file editing) and cache enabled, HoneyAnt runs its build script only when the source file is changed.
14
14
However, if it is full build (project cleaning), HoneyAnt always runs its build script.
15
15
16
+
16
17
## Install
17
18
18
19
Currently HoneyAnt does not provide an update-site. Please install plugin from cloned git repository.
@@ -22,6 +23,25 @@ Currently HoneyAnt does not provide an update-site. Please install plugin from c
22
23
3 . Restart Eclipse.
23
24
3 . Select your Java Project and configure HoneyAnt page.
24
25
26
+
27
+ ## Configuration
28
+
29
+ * Build file : the Ant build file.
30
+ * Build target : the Ant build target.
31
+ * Build trigger annotation : the HoneyAnt build trigger annotation (simple name).
32
+ * Cache directory : the directory which HoneyAnt puts its build result caches (file digest).
33
+ * Enable cache : set true if you want to avoid unnecessary build.
34
+ * Enable incremental build : set true if you want to build incrementally.
35
+
36
+
37
+ ## Ant Task Environments
38
+
39
+ HoneyAnt runs its build script with following properties.
40
+
41
+ * clazz : The full qualified class name of triggered Java file.
42
+ * path : The absolute file path of triggered Java file.
43
+
44
+
25
45
## Example
26
46
27
47
See [ Example] ( https://github.com/monzou/honeyant/tree/master/honeyant-example ) .
0 commit comments