diff --git a/easy-rules-core/src/main/java/org/jeasy/rules/core/CompositeRule.java b/easy-rules-core/src/main/java/org/jeasy/rules/core/CompositeRule.java
index 4dd10d2e..fbfb6f62 100644
--- a/easy-rules-core/src/main/java/org/jeasy/rules/core/CompositeRule.java
+++ b/easy-rules-core/src/main/java/org/jeasy/rules/core/CompositeRule.java
@@ -37,8 +37,11 @@
* A composite rule is triggered if ALL conditions of its composing rules are satisfied.
* When a composite rule is applied, actions of ALL composing rules are performed.
*
+ * @deprecated use UnitRuleGroup instead. This class is deprecated in v3.2 and will be removed in v3.3 .
+ *
* @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
*/
+@Deprecated
public class CompositeRule extends BasicRule {
/**
diff --git a/easy-rules-support/pom.xml b/easy-rules-support/pom.xml
new file mode 100644
index 00000000..347674a2
--- /dev/null
+++ b/easy-rules-support/pom.xml
@@ -0,0 +1,83 @@
+
+
+ 4.0.0
+
+ org.jeasy
+ easy-rules
+ 3.2.0-SNAPSHOT
+
+
+ easy-rules-support
+ jar
+ Easy Rules Support module
+ Support classes module
+
+
+ git@github.com:j-easy/easy-rules.git
+ scm:git:git@github.com:j-easy/easy-rules.git
+ scm:git:git@github.com:j-easy/easy-rules.git
+ HEAD
+
+
+
+ GitHub
+ https://github.com/j-easy/easy-rules/issues
+
+
+
+ Travis CI
+ https://travis-ci.org/j-easy/easy-rules
+
+
+
+
+ benas
+ Mahmoud Ben Hassine
+ http://benas.github.io
+ mahmoud.benhassine@icloud.com
+
+ Lead developer
+
+
+
+
+
+
+ MIT License
+ http://opensource.org/licenses/mit-license.php
+
+
+
+
+
+ org.jeasy
+ easy-rules-core
+ ${parent.version}
+
+
+
+ org.slf4j
+ slf4j-simple
+ ${slf4j-api.version}
+ test
+
+
+ junit
+ junit
+ test
+
+
+ org.assertj
+ assertj-core
+ test
+
+
+ org.mockito
+ mockito-core
+ test
+
+
+
+
\ No newline at end of file
diff --git a/easy-rules-support/src/main/java/org/jeasy/rules/support/CompositeRule.java b/easy-rules-support/src/main/java/org/jeasy/rules/support/CompositeRule.java
new file mode 100644
index 00000000..242d795d
--- /dev/null
+++ b/easy-rules-support/src/main/java/org/jeasy/rules/support/CompositeRule.java
@@ -0,0 +1,116 @@
+/**
+ * The MIT License
+ *
+ * Copyright (c) 2017, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+package org.jeasy.rules.support;
+
+import org.jeasy.rules.api.Facts;
+import org.jeasy.rules.api.Rule;
+import org.jeasy.rules.core.BasicRule;
+import org.jeasy.rules.core.RuleProxy;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Set;
+import java.util.TreeSet;
+
+/**
+ * Base class representing a composite rule composed of a set of rules.
+ *
+ * @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
+ */
+public abstract class CompositeRule extends BasicRule {
+
+ /**
+ * The set of composing rules.
+ */
+ protected Set rules;
+
+ private Map