From: Mathieu Baudier Date: Sat, 21 Feb 2009 13:14:33 +0000 (+0000) Subject: Introduce SLC Execution X-Git-Tag: argeo-slc-2.1.7~2139 X-Git-Url: http://git.argeo.org/?a=commitdiff_plain;h=598bba5b938e8e8f1774a884f39f6aecb27d8efc;p=gpl%2Fargeo-slc.git Introduce SLC Execution git-svn-id: https://svn.argeo.org/slc/trunk@2160 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/runtime/org.argeo.slc.execution/.project b/runtime/org.argeo.slc.execution/.project index 63e0d7408..63788ab3e 100644 --- a/runtime/org.argeo.slc.execution/.project +++ b/runtime/org.argeo.slc.execution/.project @@ -1,6 +1,6 @@ - argeo.slc.executionflow + org.argeo.slc.execution diff --git a/runtime/org.argeo.slc.execution/.springBeans b/runtime/org.argeo.slc.execution/.springBeans index 07dddcb58..c11d81486 100644 --- a/runtime/org.argeo.slc.execution/.springBeans +++ b/runtime/org.argeo.slc.execution/.springBeans @@ -7,12 +7,6 @@ - src/slc/conf/main.xml - src/slc/conf/testCases/basic-001.xml - src/slc/conf/testCases/basic-002.xml - src/slc/conf/basic.xml - src/slc/conf/common.xml - src/slc/conf/test.xml diff --git a/runtime/org.argeo.slc.execution/pom.xml b/runtime/org.argeo.slc.execution/pom.xml index 1025a48ce..bd0025ed3 100644 --- a/runtime/org.argeo.slc.execution/pom.xml +++ b/runtime/org.argeo.slc.execution/pom.xml @@ -7,9 +7,9 @@ 0.11.3-SNAPSHOT ../../org.argeo.slc - org.argeo.slc.sandbox - org.argeo.slc.sandbox.executionflow - SLC Sandbox Execution Flow + org.argeo.slc.runtime + org.argeo.slc.sandbox.execution + SLC Execution jar @@ -53,4 +53,4 @@ 2.1.3 - \ No newline at end of file + diff --git a/runtime/org.argeo.slc.execution/src/slc/conf/BasicExecutionFlow.groovy b/runtime/org.argeo.slc.execution/src/slc/conf/BasicExecutionFlow.groovy deleted file mode 100644 index da3926ef8..000000000 --- a/runtime/org.argeo.slc.execution/src/slc/conf/BasicExecutionFlow.groovy +++ /dev/null @@ -1,12 +0,0 @@ -import org.argeo.slc.test.*; - -public class BasicExecutionFlow implements org.argeo.slc.executionflow.ExecutionFlow { - - ExecutableTestRun firstSubTest = null; - ExecutableTestRun secondSubTest = null; - - void execute(){ - firstSubTest?.execute(); - secondSubTest?.execute(); - } -} diff --git a/runtime/org.argeo.slc.execution/src/slc/conf/basic.xml b/runtime/org.argeo.slc.execution/src/slc/conf/basic.xml deleted file mode 100644 index 5e1c46e4f..000000000 --- a/runtime/org.argeo.slc.execution/src/slc/conf/basic.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/runtime/org.argeo.slc.execution/src/slc/conf/common.xml b/runtime/org.argeo.slc.execution/src/slc/conf/common.xml deleted file mode 100644 index 4495b2f83..000000000 --- a/runtime/org.argeo.slc.execution/src/slc/conf/common.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/runtime/org.argeo.slc.execution/src/slc/conf/main.xml b/runtime/org.argeo.slc.execution/src/slc/conf/main.xml deleted file mode 100644 index 829e6ee5b..000000000 --- a/runtime/org.argeo.slc.execution/src/slc/conf/main.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/runtime/org.argeo.slc.execution/src/slc/conf/slc.properties b/runtime/org.argeo.slc.execution/src/slc/conf/slc.properties deleted file mode 100644 index b18dce171..000000000 --- a/runtime/org.argeo.slc.execution/src/slc/conf/slc.properties +++ /dev/null @@ -1,16 +0,0 @@ -log4j.rootLogger=WARN, console - -## Levels -log4j.logger.org.argeo=DEBUG -log4j.logger.org.argeo.slc.executionflow.ExecutionParameterPostProcessor=TRACE -log4j.logger.org.argeo.slc.executionflow.ExecutionContext=TRACE - -## Appenders -# console is set to be a ConsoleAppender. -log4j.appender.console=org.apache.log4j.ConsoleAppender - -# console uses PatternLayout. -log4j.appender.console.layout=org.apache.log4j.PatternLayout -log4j.appender.console.layout.ConversionPattern= %-5p %d{ISO8601} %m - %c%n - -testCase=002 \ No newline at end of file diff --git a/runtime/org.argeo.slc.execution/src/slc/conf/test.xml b/runtime/org.argeo.slc.execution/src/slc/conf/test.xml deleted file mode 100644 index 6cc40e80e..000000000 --- a/runtime/org.argeo.slc.execution/src/slc/conf/test.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/runtime/org.argeo.slc.execution/src/slc/conf/testCases/basic-001.xml b/runtime/org.argeo.slc.execution/src/slc/conf/testCases/basic-001.xml deleted file mode 100644 index 0131cc273..000000000 --- a/runtime/org.argeo.slc.execution/src/slc/conf/testCases/basic-001.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/runtime/org.argeo.slc.execution/src/slc/conf/testCases/basic-002.xml b/runtime/org.argeo.slc.execution/src/slc/conf/testCases/basic-002.xml deleted file mode 100644 index fc52a03f1..000000000 --- a/runtime/org.argeo.slc.execution/src/slc/conf/testCases/basic-002.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file