You are viewing a plain text version of this content. The canonical link for it is here.
Posted to s4-commits@incubator.apache.org by mm...@apache.org on 2012/01/03 14:03:28 UTC

[23/50] [abbrv] git commit: make sure each test runs in a new JVM

make sure each test runs in a new JVM

Project: http://git-wip-us.apache.org/repos/asf/incubator-s4/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-s4/commit/502b81ea
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s4/tree/502b81ea
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s4/diff/502b81ea

Branch: refs/heads/piper
Commit: 502b81ea00a135729d22b152a75a811e11eacb96
Parents: c287c85
Author: Matthieu Morel <mm...@apache.org>
Authored: Tue Nov 22 19:19:00 2011 +0100
Committer: Matthieu Morel <mm...@apache.org>
Committed: Tue Nov 22 19:19:00 2011 +0100

----------------------------------------------------------------------
 subprojects/s4-comm/s4-comm.gradle |   56 ++++++++++++++++--------------
 1 files changed, 30 insertions(+), 26 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s4/blob/502b81ea/subprojects/s4-comm/s4-comm.gradle
----------------------------------------------------------------------
diff --git a/subprojects/s4-comm/s4-comm.gradle b/subprojects/s4-comm/s4-comm.gradle
index dfa0fe7..b266c9b 100644
--- a/subprojects/s4-comm/s4-comm.gradle
+++ b/subprojects/s4-comm/s4-comm.gradle
@@ -1,26 +1,30 @@
-/*
- * Copyright 2010 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-description = 'Implementation-specific components of the communication layer.'
- 
-dependencies {
-    compile project(":s4-base")
-    compile libraries.json
-    compile libraries.gson
- 	compile libraries.kryo
-    compile libraries.netty
-    compile libraries.zkclient
-}
+/*
+ * Copyright 2010 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+description = 'Implementation-specific components of the communication layer.'
+ 
+dependencies {
+    compile project(":s4-base")
+    compile libraries.json
+    compile libraries.gson
+ 	compile libraries.kryo
+    compile libraries.netty
+    compile libraries.zkclient
+}
+
+test {
+    forkEvery=1
+}