Skip to content

Commit c10d270

Browse files
committed
Cache: solve the split-package problem
- move the classes from the quarkus-cache-runtime-spi artifact to quarkus-cache - get rid of the quarkus-cache-runtime-spi artifact - move CacheManagerInfoBuildItem to the quarkus-cache-deployment
1 parent 665a487 commit c10d270

File tree

12 files changed

+3
-40
lines changed

12 files changed

+3
-40
lines changed

bom/application/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3394,11 +3394,6 @@
33943394
<artifactId>quarkus-cache-deployment-spi</artifactId>
33953395
<version>${project.version}</version>
33963396
</dependency>
3397-
<dependency>
3398-
<groupId>io.quarkus</groupId>
3399-
<artifactId>quarkus-cache-runtime-spi</artifactId>
3400-
<version>${project.version}</version>
3401-
</dependency>
34023397
<dependency>
34033398
<groupId>io.quarkus</groupId>
34043399
<artifactId>quarkus-google-cloud-functions</artifactId>

extensions/cache/deployment-spi/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
<groupId>io.quarkus</groupId>
1919
<artifactId>quarkus-core-deployment</artifactId>
2020
</dependency>
21-
<dependency>
22-
<groupId>io.quarkus</groupId>
23-
<artifactId>quarkus-cache-runtime-spi</artifactId>
24-
</dependency>
2521
</dependencies>
2622

2723
</project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.quarkus.cache.deployment.spi;
1+
package io.quarkus.cache.deployment;
22

33
import io.quarkus.builder.item.MultiBuildItem;
44
import io.quarkus.cache.CacheManagerInfo;

extensions/cache/deployment/src/main/java/io/quarkus/cache/deployment/CacheProcessor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
import io.quarkus.cache.deployment.exception.UnsupportedRepeatedAnnotationException;
5555
import io.quarkus.cache.deployment.exception.VoidReturnTypeTargetException;
5656
import io.quarkus.cache.deployment.spi.AdditionalCacheNameBuildItem;
57-
import io.quarkus.cache.deployment.spi.CacheManagerInfoBuildItem;
5857
import io.quarkus.cache.deployment.spi.CacheTypeBuildItem;
5958
import io.quarkus.cache.runtime.CacheBuildConfig;
6059
import io.quarkus.cache.runtime.CacheInvalidateAllInterceptor;

extensions/cache/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<module>deployment</module>
2020
<module>deployment-spi</module>
2121
<module>runtime</module>
22-
<module>runtime-spi</module>
2322
<module>runtime-dev</module>
2423
</modules>
2524
</project>

extensions/cache/runtime-spi/pom.xml

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

extensions/cache/runtime/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@
3131
<groupId>io.quarkus</groupId>
3232
<artifactId>quarkus-vertx</artifactId>
3333
</dependency>
34-
<dependency>
35-
<groupId>io.quarkus</groupId>
36-
<artifactId>quarkus-cache-runtime-spi</artifactId>
37-
</dependency>
3834
<dependency>
3935
<groupId>io.vertx</groupId>
4036
<artifactId>vertx-web</artifactId>

0 commit comments

Comments
 (0)