Skip to content

Commit e0226e9

Browse files
committed
reactify-core docs
1 parent e609028 commit e0226e9

File tree

126 files changed

+24
-42
lines changed

Some content is hidden

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

126 files changed

+24
-42
lines changed

pom.xml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
</parent>
1212

1313
<groupId>io.github.hoangtien2k3</groupId>
14-
<artifactId>reactify-core</artifactId>
15-
<version>1.1.5</version>
14+
<artifactId>reactify-parent</artifactId>
15+
<version>1.1.6</version>
1616
<packaging>pom</packaging>
17-
<name>reactify-core</name>
17+
<name>reactify-parent</name>
1818
<description>Java library for developing backend with reactive programming</description>
1919
<url>https://github.com/hoangtien2k3/reactify</url>
2020

@@ -88,7 +88,7 @@
8888
</dependencyManagement>
8989

9090
<modules>
91-
<module>reactify</module>
91+
<module>reactify-core</module>
9292
<module>utils</module>
9393
</modules>
9494

@@ -236,15 +236,7 @@
236236
<palantirJavaFormat/>
237237
</java>
238238
</configuration>
239-
<executions>
240-
<execution>
241-
<id>java-formatter</id>
242-
<goals>
243-
<goal>check</goal>
244-
</goals>
245-
<phase>validate</phase>
246-
</execution>
247-
</executions>
239+
248240
</plugin>
249241
<plugin>
250242
<groupId>com.mycila</groupId>

reactify/pom.xml renamed to reactify-core/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<groupId>org.springframework.boot</groupId>
8-
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.3.3</version>
10-
<relativePath/>
7+
<groupId>io.github.hoangtien2k3</groupId>
8+
<artifactId>reactify-parent</artifactId>
9+
<version>1.1.6</version>
10+
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

1313
<groupId>io.github.hoangtien2k3</groupId>
1414
<artifactId>reactify</artifactId>
15-
<version>1.1.5</version>
15+
<version>1.1.6</version>
1616
<packaging>jar</packaging>
1717
<name>reactify</name>
1818
<description>Java library for developing backend with reactive programming</description>

reactify/src/main/java/io/hoangtien2k3/reactify/annotations/LocalCache.java renamed to reactify-core/src/main/java/io/hoangtien2k3/reactify/annotations/LocalCache.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,13 @@
2020
import java.lang.annotation.RetentionPolicy;
2121
import java.lang.annotation.Target;
2222

23-
/** @deprecated */
2423
/**
2524
* <p>
2625
* LocalCache class.
2726
* </p>
2827
*
2928
* @author hoangtien2k3
3029
*/
31-
@Deprecated
3230
@Target(ElementType.METHOD)
3331
@Retention(RetentionPolicy.RUNTIME)
3432
public @interface LocalCache {

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,13 @@
2929
import reactor.core.publisher.Mono;
3030
import reactor.core.publisher.Signal;
3131

32-
/** @deprecated */
3332
/**
3433
* <p>
3534
* CacheAspect class.
3635
* </p>
3736
*
3837
* @author hoangtien2k3
3938
*/
40-
@Deprecated
4139
@Aspect
4240
@Configuration
4341
@Slf4j

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,13 @@
3333
import org.springframework.scheduling.annotation.Async;
3434
import org.springframework.stereotype.Component;
3535

36-
/** @deprecated */
3736
/**
3837
* <p>
3938
* CacheStore class.
4039
* </p>
4140
*
4241
* @author hoangtien2k3
4342
*/
44-
@Deprecated
4543
@Slf4j
4644
@Component
4745
public class CacheStore {

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,13 @@
2222
import org.springframework.stereotype.Component;
2323
import reactor.core.publisher.Mono;
2424

25-
/** @deprecated */
2625
/**
2726
* <p>
2827
* CacheUtils class.
2928
* </p>
3029
*
3130
* @author hoangtien2k3
3231
*/
33-
@Deprecated
3432
@Slf4j
3533
@Component
3634
@RequiredArgsConstructor
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,13 @@
2323
import org.checkerframework.checker.nullness.qual.NonNull;
2424
import org.checkerframework.checker.nullness.qual.Nullable;
2525

26-
/** @deprecated */
2726
/**
2827
* <p>
2928
* CustomizeRemovalListener class.
3029
* </p>
3130
*
3231
* @author hoangtien2k3
3332
*/
34-
@Deprecated
3533
@Slf4j
3634
@AllArgsConstructor
3735
public class CustomizeRemovalListener implements RemovalListener {

0 commit comments

Comments
 (0)