Skip to content

Commit 39e5503

Browse files
committed
reactify-core
1 parent 8458f13 commit 39e5503

File tree

72 files changed

+55
-234
lines changed

Some content is hidden

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

72 files changed

+55
-234
lines changed

pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
5-
65
<parent>
76
<groupId>org.springframework.boot</groupId>
87
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.3.3</version>
8+
<version>3.3.2</version>
109
<relativePath/>
1110
</parent>
1211

@@ -89,7 +88,7 @@
8988

9089
<modules>
9190
<module>reactify-core</module>
92-
<module>utils</module>
91+
<module>reactify-utils</module>
9392
</modules>
9493

9594
<dependencies>

reactify-core/pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
5-
65
<parent>
7-
<groupId>io.github.hoangtien2k3</groupId>
8-
<artifactId>reactify-parent</artifactId>
9-
<version>1.1.6</version>
10-
<relativePath>../pom.xml</relativePath>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot-starter-parent</artifactId>
8+
<version>3.3.2</version>
9+
<relativePath/>
1110
</parent>
1211

1312
<groupId>io.github.hoangtien2k3</groupId>
@@ -50,7 +49,6 @@
5049

5150
<properties>
5251
<java.version>21</java.version>
53-
<spring.version>3.3.3</spring.version>
5452
<micrometer.tracing.version>1.3.1</micrometer.tracing.version>
5553
<micrometer.registry.version>1.13.1</micrometer.registry.version>
5654
<micrometer.core.version>1.13.1</micrometer.core.version>
@@ -66,9 +64,10 @@
6664
<jackson.databind.version>2.17.1</jackson.databind.version>
6765
<spotless.version>2.43.0</spotless.version>
6866
<file.encoding>UTF-8</file.encoding>
67+
<!-- Plugins version -->
6968
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
7069
<maven-surefire-plugin.version>3.4.0</maven-surefire-plugin.version>
71-
<central-publishing-maven-plugin.version>0.5.0</central-publishing-maven-plugin.version>
70+
<central-publishing-maven-plugin.version>0.6.0</central-publishing-maven-plugin.version>
7271
<nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version>
7372
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
7473
<maven-javadoc-plugin.version>3.8.0</maven-javadoc-plugin.version>
@@ -411,6 +410,8 @@
411410
<extensions>true</extensions>
412411
<configuration>
413412
<publishingServerId>central</publishingServerId>
413+
<autoPublish>true</autoPublish>
414+
<waitUntil>published</waitUntil>
414415
</configuration>
415416
</plugin>
416417
<plugin>

reactify-core/src/main/java/io/hoangtien2k3/reactify/utils/AppUtils.java renamed to reactify-core/src/main/java/io/hoangtien2k3/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.utils;
16+
package io.hoangtien2k3.reactify;
1717

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

reactify-core/src/main/java/io/hoangtien2k3/reactify/utils/CacheUtils.java renamed to reactify-core/src/main/java/io/hoangtien2k3/reactify/CacheUtils.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.utils;
16+
package io.hoangtien2k3.reactify;
1717

1818
import com.github.benmanes.caffeine.cache.AsyncCache;
1919
import com.github.benmanes.caffeine.cache.Cache;

reactify-core/src/main/java/io/hoangtien2k3/reactify/utils/DataUtil.java renamed to reactify-core/src/main/java/io/hoangtien2k3/reactify/DataUtil.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.utils;
16+
package io.hoangtien2k3.reactify;
1717

1818
import static io.hoangtien2k3.reactify.constants.CommonConstant.DATE_FORMAT_YM2;
1919

reactify-core/src/main/java/io/hoangtien2k3/reactify/utils/DataWsUtil.java renamed to reactify-core/src/main/java/io/hoangtien2k3/reactify/DataWsUtil.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.utils;
16+
package io.hoangtien2k3.reactify;
1717

1818
import io.hoangtien2k3.reactify.constants.Constants;
1919
import io.hoangtien2k3.reactify.factory.UnmarshallerFactory;

reactify-core/src/main/java/io/hoangtien2k3/reactify/utils/LogUtils.java renamed to reactify-core/src/main/java/io/hoangtien2k3/reactify/LogUtils.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.utils;
16+
package io.hoangtien2k3.reactify;
1717

1818
import io.netty.buffer.UnpooledByteBufAllocator;
1919
import java.io.ByteArrayOutputStream;

reactify-core/src/main/java/io/hoangtien2k3/reactify/utils/MessageUtils.java renamed to reactify-core/src/main/java/io/hoangtien2k3/reactify/MessageUtils.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.utils;
16+
package io.hoangtien2k3.reactify;
1717

1818
import java.text.MessageFormat;
1919
import java.util.Locale;

reactify-core/src/main/java/io/hoangtien2k3/reactify/utils/MinioUtils.java renamed to reactify-core/src/main/java/io/hoangtien2k3/reactify/MinioUtils.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.utils;
16+
package io.hoangtien2k3.reactify;
1717

1818
import io.hoangtien2k3.reactify.config.MinioProperties;
1919
import io.hoangtien2k3.reactify.constants.CommonErrorCode;

reactify-core/src/main/java/io/hoangtien2k3/reactify/utils/ObjectMapperUtil.java renamed to reactify-core/src/main/java/io/hoangtien2k3/reactify/ObjectMapperUtil.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.utils;
16+
package io.hoangtien2k3.reactify;
1717

1818
import com.fasterxml.jackson.core.JsonProcessingException;
1919
import com.fasterxml.jackson.databind.ObjectMapper;

0 commit comments

Comments
 (0)