]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.agent/src/main/java/org/argeo/slc/ant/SlcAntConstants.java
Simplify new runtime
[gpl/argeo-slc.git] / org.argeo.slc.agent / src / main / java / org / argeo / slc / ant / SlcAntConstants.java
1 package org.argeo.slc.ant;
2
3 public interface SlcAntConstants {
4
5 /** The Ant reference to the Spring application context used. */
6 public static final String REF_ROOT_CONTEXT = "slcApplicationContext";
7 /** The Ant reference to the SLC structure registry used. */
8 public static final String REF_STRUCTURE_REGISTRY = "slcStructureRegistry";
9 /** The Ant reference to the <code>TreePath</code> of the current project */
10 public static final String REF_PROJECT_PATH = "slcProjectPath";
11 /**
12 * Resource path to the property file listing the SLC specific Ant tasks:
13 * /org/argeo/slc/ant/taskdefs.properties
14 */
15 public static final String SLC_TASKDEFS_RESOURCE_PATH = "/org/argeo/slc/ant/taskdefs.properties";
16 /**
17 * Resource path to the property file listing the SLC specific Ant types:
18 * /org/argeo/slc/ant/typedefs.properties
19 */
20 public static final String SLC_TYPEDEFS_RESOURCE_PATH = "/org/argeo/slc/ant/typedefs.properties";
21 public static final String EXECTYPE_ANT = "org.apache.tools.ant";
22 public static final String EXECTYPE_SLC_ANT = "org.argeo.slc.ant";
23 public static final String REF_SLC_EXECUTION = "slcExecution";
24
25 public final static String EXECATTR_ANT_FILE = "ant.file";
26 public final static String EXECATTR_ANT_TARGETS = "ant.targets";
27 /** Property for the root dir (SLC root property file). */
28 public final static String ROOT_DIR_PROPERTY = "slc.rootDir";
29 /** Property for the conf dir (SLC root property file). */
30 public final static String CONF_DIR_PROPERTY = "slc.confDir";
31 /** Property for the work dir (SLC root property file). */
32 public final static String WORK_DIR_PROPERTY = "slc.workDir";
33 /** Name of the Spring bean used by default */
34 public final static String DEFAULT_TEST_RUN_PROPERTY = "slc.defaultTestRun";
35
36 }