Skip to content

Commit d7deb80

Browse files
committed
feat: update reactify-core
1 parent 079962d commit d7deb80

File tree

157 files changed

+3195
-568
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+3195
-568
lines changed

pom.xml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -93,35 +93,20 @@
9393
<module>reactify-core</module>
9494
<module>reactify-utils</module>
9595
<module>reactify-cache</module>
96+
<module>reactify-tracelog</module>
9697
</modules>
9798

9899
<dependencies>
99100
<dependency>
100101
<groupId>org.springframework.boot</groupId>
101102
<artifactId>spring-boot-starter-webflux</artifactId>
102103
</dependency>
103-
<dependency>
104-
<groupId>org.springframework.boot</groupId>
105-
<artifactId>spring-boot-devtools</artifactId>
106-
<scope>runtime</scope>
107-
<optional>true</optional>
108-
</dependency>
109104
<dependency>
110105
<groupId>org.projectlombok</groupId>
111106
<artifactId>lombok</artifactId>
112107
<version>${lombok.version}</version>
113108
<scope>provided</scope>
114109
</dependency>
115-
<dependency>
116-
<groupId>org.springframework.boot</groupId>
117-
<artifactId>spring-boot-starter-test</artifactId>
118-
<scope>test</scope>
119-
</dependency>
120-
<dependency>
121-
<groupId>io.projectreactor</groupId>
122-
<artifactId>reactor-test</artifactId>
123-
<scope>test</scope>
124-
</dependency>
125110
</dependencies>
126111

127112
<build>

reactify-cache/pom.xml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
6-
<groupId>io.github.hoangtien2k3</groupId>
7-
<artifactId>reactify</artifactId>
8-
<version>1.1.6</version>
9-
<relativePath>../pom.xml</relativePath>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot-starter-parent</artifactId>
8+
<version>3.3.5</version>
9+
<relativePath/>
1010
</parent>
11+
<groupId>io.github.hoangtien2k3</groupId>
1112
<artifactId>reactify-cache</artifactId>
12-
<version>1.1.6</version>
13+
<version>1.1.7</version>
1314
<name>reactify-cache</name>
1415
<packaging>jar</packaging>
1516
<description>Java lib using caffeine cache</description>
@@ -76,10 +77,6 @@
7677
</properties>
7778

7879
<dependencies>
79-
<dependency>
80-
<groupId>org.springframework.boot</groupId>
81-
<artifactId>spring-boot-starter</artifactId>
82-
</dependency>
8380
<dependency>
8481
<groupId>org.aspectj</groupId>
8582
<artifactId>aspectjweaver</artifactId>

reactify-cache/src/main/java/io/hoangtien2k3/cache/ApplicationContextProvider.java renamed to reactify-cache/src/main/java/com/reactify/cache/ApplicationContextProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.hoangtien2k3.cache;
17+
package com.reactify.cache;
1818

1919
import org.springframework.beans.BeansException;
2020
import org.springframework.context.ApplicationContext;

reactify-cache/src/main/java/io/hoangtien2k3/cache/CacheAspect.java renamed to reactify-cache/src/main/java/com/reactify/cache/CacheAspect.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.hoangtien2k3.cache;
17+
package com.reactify.cache;
1818

1919
import com.github.benmanes.caffeine.cache.Cache;
2020
import java.util.Objects;
@@ -43,7 +43,7 @@
4343
@Slf4j
4444
public class CacheAspect {
4545

46-
@Pointcut("@annotation(io.hoangtien2k3.cache.LocalCache)")
46+
@Pointcut("@annotation(com.reactify.cache.LocalCache)")
4747
private void processAnnotation() {}
4848

4949
/**

reactify-cache/src/main/java/io/hoangtien2k3/cache/CacheStore.java renamed to reactify-cache/src/main/java/com/reactify/cache/CacheStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.hoangtien2k3.cache;
17+
package com.reactify.cache;
1818

1919
import com.github.benmanes.caffeine.cache.Cache;
2020
import com.github.benmanes.caffeine.cache.Caffeine;

reactify-cache/src/main/java/io/hoangtien2k3/cache/CacheUtils.java renamed to reactify-cache/src/main/java/com/reactify/cache/CacheUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.hoangtien2k3.cache;
17+
package com.reactify.cache;
1818

1919
import java.lang.reflect.Method;
2020
import lombok.RequiredArgsConstructor;

reactify-cache/src/main/java/io/hoangtien2k3/cache/CustomizeRemovalListener.java renamed to reactify-cache/src/main/java/com/reactify/cache/CustomizeRemovalListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.hoangtien2k3.cache;
17+
package com.reactify.cache;
1818

1919
import com.github.benmanes.caffeine.cache.RemovalCause;
2020
import com.github.benmanes.caffeine.cache.RemovalListener;

reactify-cache/src/main/java/io/hoangtien2k3/cache/LocalCache.java renamed to reactify-cache/src/main/java/com/reactify/cache/LocalCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package io.hoangtien2k3.cache;
17+
package com.reactify.cache;
1818

1919
import java.lang.annotation.ElementType;
2020
import java.lang.annotation.Retention;

reactify-core/pom.xml

Lines changed: 33 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
6-
<groupId>io.github.hoangtien2k3</groupId>
7-
<artifactId>reactify</artifactId>
8-
<version>1.1.6</version>
9-
<relativePath>../pom.xml</relativePath>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot-starter-parent</artifactId>
8+
<version>3.3.5</version>
9+
<relativePath/>
1010
</parent>
11-
<groupId>com.ezbuy.platform</groupId>
11+
<groupId>io.github.hoangtien2k3</groupId>
1212
<artifactId>reactify-core</artifactId>
13-
<version>${revision}</version>
13+
<version>1.1.7</version>
1414
<name>reactify-core</name>
1515
<description>Java library for developing backend with reactive programming</description>
1616
<url>https://github.com/hoangtien2k3/reactify</url>
@@ -46,7 +46,6 @@
4646
</distributionManagement>
4747

4848
<properties>
49-
<revision>1.1.6</revision>
5049
<java.version>21</java.version>
5150
<micrometer.tracing.version>1.3.1</micrometer.tracing.version>
5251
<micrometer.registry.version>1.13.1</micrometer.registry.version>
@@ -87,10 +86,30 @@
8786
</dependencyManagement>
8887

8988
<dependencies>
89+
<dependency>
90+
<groupId>org.springframework.boot</groupId>
91+
<artifactId>spring-boot-starter-webflux</artifactId>
92+
</dependency>
93+
<dependency>
94+
<groupId>org.springframework.boot</groupId>
95+
<artifactId>spring-boot-starter-validation</artifactId>
96+
</dependency>
9097
<dependency>
9198
<groupId>org.springframework.boot</groupId>
9299
<artifactId>spring-boot-starter-actuator</artifactId>
93100
</dependency>
101+
<dependency>
102+
<groupId>org.springframework.boot</groupId>
103+
<artifactId>spring-boot-starter-aop</artifactId>
104+
</dependency>
105+
<dependency>
106+
<groupId>org.springframework.boot</groupId>
107+
<artifactId>spring-boot-starter-oauth2-client</artifactId>
108+
</dependency>
109+
<dependency>
110+
<groupId>org.springframework.boot</groupId>
111+
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
112+
</dependency>
94113
<dependency>
95114
<groupId>io.micrometer</groupId>
96115
<artifactId>micrometer-tracing-bridge-brave</artifactId>
@@ -121,10 +140,6 @@
121140
<artifactId>minio</artifactId>
122141
<version>${minio.version}</version>
123142
</dependency>
124-
<dependency>
125-
<groupId>org.springframework.boot</groupId>
126-
<artifactId>spring-boot-starter-aop</artifactId>
127-
</dependency>
128143
<dependency>
129144
<groupId>org.json</groupId>
130145
<artifactId>json</artifactId>
@@ -144,48 +159,40 @@
144159
<groupId>com.github.ben-manes.caffeine</groupId>
145160
<artifactId>caffeine</artifactId>
146161
</dependency>
147-
<dependency>
148-
<groupId>org.springframework.boot</groupId>
149-
<artifactId>spring-boot-starter-oauth2-client</artifactId>
150-
</dependency>
151-
<dependency>
152-
<groupId>org.springframework.boot</groupId>
153-
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
154-
</dependency>
155162
<dependency>
156163
<groupId>org.eclipse.jetty</groupId>
157164
<artifactId>jetty-reactive-httpclient</artifactId>
158-
<version>4.0.5</version>
165+
<version>4.0.8</version>
159166
</dependency>
160167
<dependency>
161168
<groupId>org.eclipse.jetty</groupId>
162169
<artifactId>jetty-client</artifactId>
163-
<version>12.0.11</version>
170+
<version>12.0.14</version>
164171
</dependency>
165172
<dependency>
166173
<groupId>org.eclipse.jetty</groupId>
167174
<artifactId>jetty-io</artifactId>
168-
<version>12.0.11</version>
175+
<version>12.0.14</version>
169176
</dependency>
170177
<dependency>
171178
<groupId>org.eclipse.jetty</groupId>
172179
<artifactId>jetty-util</artifactId>
173-
<version>12.0.11</version>
180+
<version>12.0.14</version>
174181
</dependency>
175182
<dependency>
176183
<groupId>org.eclipse.jetty</groupId>
177184
<artifactId>jetty-http</artifactId>
178-
<version>12.0.11</version>
185+
<version>12.0.14</version>
179186
</dependency>
180187
<dependency>
181188
<groupId>org.eclipse.jetty.http2</groupId>
182189
<artifactId>http2-client</artifactId>
183-
<version>11.0.22</version>
190+
<version>11.0.24</version>
184191
</dependency>
185192
<dependency>
186193
<groupId>org.eclipse.jetty.http2</groupId>
187194
<artifactId>http2-hpack</artifactId>
188-
<version>11.0.22</version>
195+
<version>11.0.24</version>
189196
</dependency>
190197
<dependency>
191198
<groupId>org.springframework.boot</groupId>
@@ -217,14 +224,6 @@
217224
<artifactId>log4j-core</artifactId>
218225
<version>${log4j.version}</version>
219226
</dependency>
220-
<dependency>
221-
<groupId>org.springframework.boot</groupId>
222-
<artifactId>spring-boot-starter-webflux</artifactId>
223-
</dependency>
224-
<dependency>
225-
<groupId>org.springframework.boot</groupId>
226-
<artifactId>spring-boot-starter-validation</artifactId>
227-
</dependency>
228227
<dependency>
229228
<groupId>org.projectlombok</groupId>
230229
<artifactId>lombok</artifactId>

reactify-core/src/main/java/io/hoangtien2k3/reactify/AppUtils.java renamed to reactify-core/src/main/java/com/reactify/AppUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package io.hoangtien2k3.reactify;
16+
package com.reactify;
1717

1818
import java.time.Duration;
1919
import lombok.extern.slf4j.Slf4j;

0 commit comments

Comments
 (0)