Skip to content

Commit 2ddf20d

Browse files
committed
Move "api-boot-plugin-http-convert" to "api-boot"
1 parent 55e393d commit 2ddf20d

File tree

14 files changed

+21
-79
lines changed

14 files changed

+21
-79
lines changed

api-boot-project/api-boot-autoconfigure/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
<dependency>
3535
<groupId>org.projectlombok</groupId>
3636
<artifactId>lombok</artifactId>
37+
<scope>compile</scope>
38+
<optional>true</optional>
3739
</dependency>
3840
<!--fastjson-->
3941
<dependency>

api-boot-project/api-boot-dependencies/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,6 @@
9191
</dependency>
9292

9393
<!--ApiBoot Converter-->
94-
<dependency>
95-
<groupId>org.minbox.framework</groupId>
96-
<artifactId>api-boot-plugin-http-converter</artifactId>
97-
<version>${project.version}</version>
98-
<optional>true</optional>
99-
</dependency>
10094
<dependency>
10195
<groupId>org.minbox.framework</groupId>
10296
<artifactId>api-boot-starter-http-converter</artifactId>

api-boot-project/api-boot-plugins/api-boot-plugin-http-converter/pom.xml

Lines changed: 0 additions & 55 deletions
This file was deleted.

api-boot-project/api-boot-plugins/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
<module>api-boot-plugin-oauth</module>
2424
<module>api-boot-plugin-quartz</module>
2525
<module>api-boot-plugin-resource-load</module>
26-
<module>api-boot-plugin-http-converter</module>
2726
<module>api-boot-plugin-message-push</module>
2827
<module>api-boot-plugin-rate-limiter</module>
2928
<module>api-boot-plugin-sequence</module>

api-boot-project/api-boot-starters/api-boot-starter-http-converter/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@
3232
<groupId>org.minbox.framework</groupId>
3333
<artifactId>api-boot-starter</artifactId>
3434
</dependency>
35-
<dependency>
36-
<groupId>org.minbox.framework</groupId>
37-
<artifactId>api-boot-plugin-http-converter</artifactId>
38-
</dependency>
3935
<!--fastJson-->
4036
<dependency>
4137
<groupId>com.alibaba</groupId>

api-boot-project/api-boot-starters/api-boot-starter/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,10 @@
3030
<groupId>com.alibaba</groupId>
3131
<artifactId>fastjson</artifactId>
3232
</dependency>
33+
<dependency>
34+
<groupId>org.projectlombok</groupId>
35+
<artifactId>lombok</artifactId>
36+
<scope>compile</scope>
37+
</dependency>
3338
</dependencies>
3439
</project>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
*
1616
*/
1717

18-
package org.minbox.framework.api.boot.plugin.http.converter.filter;
18+
package org.minbox.framework.api.boot.convert;
1919

2020
import com.alibaba.fastjson.serializer.ValueFilter;
21-
import org.minbox.framework.api.boot.plugin.http.converter.filter.annotation.ApiBootDecimalAccuracy;
21+
import org.minbox.framework.api.boot.convert.annotation.ApiBootDecimalAccuracy;
2222
import org.springframework.util.ReflectionUtils;
2323

2424
import java.lang.reflect.Field;
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@
1515
*
1616
*/
1717

18-
package org.minbox.framework.api.boot.plugin.http.converter.filter;
18+
package org.minbox.framework.api.boot.convert;
1919

2020
import com.alibaba.fastjson.serializer.ValueFilter;
21-
import org.minbox.framework.api.boot.plugin.http.converter.filter.annotation.ApiBootValueHide;
21+
import org.minbox.framework.api.boot.convert.annotation.ApiBootValueHide;
22+
import org.minbox.framework.api.boot.convert.enums.ValueHidePositionEnum;
2223

2324
import java.lang.reflect.Field;
2425

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
*/
1717

18-
package org.minbox.framework.api.boot.plugin.http.converter.filter.annotation;
18+
package org.minbox.framework.api.boot.convert.annotation;
1919

2020
import java.lang.annotation.ElementType;
2121
import java.lang.annotation.Retention;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
*
1616
*/
1717

18-
package org.minbox.framework.api.boot.plugin.http.converter.filter.annotation;
18+
package org.minbox.framework.api.boot.convert.annotation;
1919

20-
import org.minbox.framework.api.boot.plugin.http.converter.filter.enums.ValueHidePositionEnum;
20+
import org.minbox.framework.api.boot.convert.enums.ValueHidePositionEnum;
2121

2222
import java.lang.annotation.ElementType;
2323
import java.lang.annotation.Retention;

0 commit comments

Comments
 (0)