Skip to content

Commit 333c04a

Browse files
committed
rename groupId
1 parent e5a9204 commit 333c04a

File tree

39 files changed

+96
-84
lines changed

39 files changed

+96
-84
lines changed

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>org.feego.spring</groupId>
7+
<groupId>io.github.lvyahui8</groupId>
88
<artifactId>spring-boot-data-aggregator</artifactId>
99
<version>1.0.0-SNAPSHOT</version>
1010
<modules>
@@ -47,25 +47,25 @@
4747
</dependency>
4848

4949
<dependency>
50-
<groupId>org.feego.spring</groupId>
50+
<groupId>io.github.lvyahui8</groupId>
5151
<artifactId>spring-boot-data-aggregator-autoconfigure</artifactId>
5252
<version>${project.version}</version>
5353
</dependency>
5454

5555
<dependency>
56-
<groupId>org.feego.spring</groupId>
56+
<groupId>io.github.lvyahui8</groupId>
5757
<artifactId>spring-boot-data-aggregator-core</artifactId>
5858
<version>${project.version}</version>
5959
</dependency>
6060

6161
<dependency>
62-
<groupId>org.feego.spring</groupId>
62+
<groupId>io.github.lvyahui8</groupId>
6363
<artifactId>spring-boot-data-aggregator-example</artifactId>
6464
<version>${project.version}</version>
6565
</dependency>
6666

6767
<dependency>
68-
<groupId>org.feego.spring</groupId>
68+
<groupId>io.github.lvyahui8</groupId>
6969
<artifactId>spring-boot-data-aggregator-starter</artifactId>
7070
<version>${project.version}</version>
7171
</dependency>

spring-boot-data-aggregator-autoconfigure/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
66
<artifactId>spring-boot-data-aggregator</artifactId>
7-
<groupId>org.feego.spring</groupId>
7+
<groupId>io.github.lvyahui8</groupId>
88
<version>1.0.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
@@ -38,7 +38,7 @@
3838
<version>0.9.11</version>
3939
</dependency>
4040
<dependency>
41-
<groupId>org.feego.spring</groupId>
41+
<groupId>io.github.lvyahui8</groupId>
4242
<artifactId>spring-boot-data-aggregator-core</artifactId>
4343
</dependency>
4444
</dependencies>

spring-boot-data-aggregator-autoconfigure/src/main/java/org/feego/spring/annotation/DataConsumer.java renamed to spring-boot-data-aggregator-autoconfigure/src/main/java/io/github/lvyahui8/spring/annotation/DataConsumer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.feego.spring.annotation;
1+
package io.github.lvyahui8.spring.annotation;
22

33
import java.lang.annotation.*;
44

spring-boot-data-aggregator-autoconfigure/src/main/java/org/feego/spring/annotation/DataProvider.java renamed to spring-boot-data-aggregator-autoconfigure/src/main/java/io/github/lvyahui8/spring/annotation/DataProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.feego.spring.annotation;
1+
package io.github.lvyahui8.spring.annotation;
22

33
import java.lang.annotation.*;
44

spring-boot-data-aggregator-autoconfigure/src/main/java/org/feego/spring/annotation/InvokeParameter.java renamed to spring-boot-data-aggregator-autoconfigure/src/main/java/io/github/lvyahui8/spring/annotation/InvokeParameter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.feego.spring.annotation;
1+
package io.github.lvyahui8.spring.annotation;
22

33
import java.lang.annotation.*;
44

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
package org.feego.spring.autoconfigure;
1+
package io.github.lvyahui8.spring.autoconfigure;
22

3+
import io.github.lvyahui8.spring.aggregate.facade.DataBeanAggregateQueryFacade;
4+
import io.github.lvyahui8.spring.aggregate.facade.impl.DataBeanAggregateQueryFacadeImpl;
5+
import io.github.lvyahui8.spring.aggregate.model.*;
6+
import io.github.lvyahui8.spring.aggregate.repository.DataProviderRepository;
7+
import io.github.lvyahui8.spring.aggregate.repository.impl.DataProviderRepositoryImpl;
8+
import io.github.lvyahui8.spring.aggregate.service.impl.DataBeanAgregateQueryServiceImpl;
9+
import io.github.lvyahui8.spring.annotation.DataConsumer;
10+
import io.github.lvyahui8.spring.annotation.DataProvider;
11+
import io.github.lvyahui8.spring.annotation.InvokeParameter;
312
import lombok.extern.slf4j.Slf4j;
4-
import org.feego.spring.aggregate.facade.DataBeanAggregateQueryFacade;
5-
import org.feego.spring.aggregate.facade.impl.DataBeanAggregateQueryFacadeImpl;
6-
import org.feego.spring.aggregate.model.*;
7-
import org.feego.spring.aggregate.repository.DataProviderRepository;
8-
import org.feego.spring.aggregate.repository.impl.DataProviderRepositoryImpl;
9-
import org.feego.spring.aggregate.service.impl.DataBeanAgregateQueryServiceImpl;
10-
import org.feego.spring.annotation.DataConsumer;
11-
import org.feego.spring.annotation.DataProvider;
12-
import org.feego.spring.annotation.InvokeParameter;
1313
import org.reflections.Reflections;
1414
import org.reflections.scanners.MethodAnnotationsScanner;
1515
import org.springframework.beans.BeansException;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.feego.spring.autoconfigure;
1+
package io.github.lvyahui8.spring.autoconfigure;
22

33
import lombok.Data;
44
import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -7,7 +7,7 @@
77
88
* @since 2019/5/31 23:50
99
*/
10-
@ConfigurationProperties(prefix = "org.feego.spring")
10+
@ConfigurationProperties(prefix = "io.github.lvyahui8.spring")
1111
@Data
1212
public class BeanAggregateProperties {
1313
private String [] basePackpages;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
2-
org.feego.spring.autoconfigure.BeanAggregateAutoConfiguration
2+
io.github.lvyahui8.spring.autoconfigure.BeanAggregateAutoConfiguration

0 commit comments

Comments
 (0)