Skip to content

Commit

Permalink
change package name
Browse files Browse the repository at this point in the history
  • Loading branch information
rongfengliang committed Apr 16, 2020
1 parent 361cc77 commit c1292c6
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;


import org.apache.commons.logging.Log;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;

import org.springframework.boot.context.properties.ConfigurationProperties;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;


import org.jeasy.rules.annotation.Action;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;

/**
* @author dalong
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;

public enum RuleFileType {
JSON,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;


/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;

import org.springframework.context.ApplicationContext;
import org.springframework.expression.BeanResolver;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.rongfengliang;
package com.github.rongfengliang;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.rongfengliang.rulelocator;
package com.github.rongfengliang.rulelocator;

import com.rongfengliang.RuleFileType;
import com.rongfengliang.RuleExpressionType;
import com.github.rongfengliang.RuleFileType;
import com.github.rongfengliang.RuleExpressionType;
import org.jeasy.rules.api.Rules;

import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.rongfengliang.rulelocator.impl;
package com.github.rongfengliang.rulelocator.impl;

import com.rongfengliang.RuleFileType;
import com.rongfengliang.RuleExpressionType;
import com.rongfengliang.rulelocator.RulesLocator;
import com.github.rongfengliang.RuleFileType;
import com.github.rongfengliang.RuleExpressionType;
import com.github.rongfengliang.rulelocator.RulesLocator;
import org.jeasy.rules.api.Rules;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.expression.BeanResolver;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/spring.factories
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.rongfengliang.EasyRulesAutoConfiguration
com.github.rongfengliang.EasyRulesAutoConfiguration

0 comments on commit c1292c6

Please sign in to comment.