diff --git a/easyrules-spring-boot-starter/pom.xml b/easyrules-spring-boot-starter/pom.xml
new file mode 100644
index 0000000..16390ab
--- /dev/null
+++ b/easyrules-spring-boot-starter/pom.xml
@@ -0,0 +1,85 @@
+
+
+ 4.0.0
+
+
+ org.easyrules
+ easyrules
+ 2.4.1-SNAPSHOT
+
+
+ easyrules-spring-boot-starter
+ jar
+
+ Easy Rules Spring Boot Starter module
+ Module providing Spring Boot autoconfiguration
+
+
+ git@github.com:EasyRules/easyrules.git
+ scm:git:git@github.com:EasyRules/easyrules.git
+ scm:git:git@github.com:EasyRules/easyrules.git
+ HEAD
+
+
+
+ GitHub
+ https://github.com/EasyRules/easyrules/issues
+
+
+
+ Travis CI
+ https://travis-ci.org/EasyRules/easyrules
+
+
+
+
+ andersonkyle
+ Kyle Anderson
+ https://github.com/andersonkyle
+
+ Contributor
+
+
+
+
+
+
+ MIT License
+ http://opensource.org/licenses/mit-license.php
+
+
+
+
+
+ org.easyrules
+ easyrules-core
+
+
+ org.easyrules
+ easyrules-spring
+
+
+ org.springframework.boot
+ spring-boot-autoconfigure
+
+
+ org.springframework.boot
+ spring-boot-test
+ test
+
+
+ junit
+ junit
+ test
+
+
+ commons-logging
+ commons-logging
+ test
+
+
+
+
+
\ No newline at end of file
diff --git a/easyrules-spring-boot-starter/src/main/java/org/easyrules/spring/boot/autoconfigure/EasyRulesAutoConfiguration.java b/easyrules-spring-boot-starter/src/main/java/org/easyrules/spring/boot/autoconfigure/EasyRulesAutoConfiguration.java
new file mode 100644
index 0000000..226a2e7
--- /dev/null
+++ b/easyrules-spring-boot-starter/src/main/java/org/easyrules/spring/boot/autoconfigure/EasyRulesAutoConfiguration.java
@@ -0,0 +1,60 @@
+/**
+ * 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.easyrules.spring.boot.autoconfigure;
+
+import org.easyrules.annotation.Rule;
+import org.easyrules.api.RulesEngine;
+import org.easyrules.spring.RulesEngineFactoryBean;
+import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
+import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * AutoConfiguration for {@link RulesEngine}
+ *
+ * @author Kyle Anderson
+ */
+@Configuration
+@ConditionalOnClass(RulesEngineFactoryBean.class)
+@ConditionalOnMissingBean(RulesEngineFactoryBean.class)
+public class EasyRulesAutoConfiguration {
+
+ @Bean
+ public RulesEngineFactoryBean rulesEngineFactoryBean(ApplicationContext context) {
+ List