Skip to content

Commit

Permalink
remove unneeded prisms
Browse files Browse the repository at this point in the history
  • Loading branch information
SentryMan committed Dec 14, 2024
1 parent bc00ff3 commit 15d7f47
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
7 changes: 7 additions & 0 deletions ebean-querybean/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.ebean</groupId>
<artifactId>querybean-generator</artifactId>
<version>14.8.0</version>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand Down
7 changes: 0 additions & 7 deletions querybean-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,6 @@
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-querybean</artifactId>
<version>${project.version}</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.ebean</groupId>
<artifactId>jakarta-persistence-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,13 @@
@GeneratePrism(io.ebean.annotation.DbJson.class)
@GeneratePrism(io.ebean.annotation.DbJsonB.class)
@GeneratePrism(io.ebean.annotation.DbName.class)
@GeneratePrism(io.ebean.annotation.DbName.class)
@GeneratePrism(io.ebean.annotation.EbeanComponent.class)
@GeneratePrism(io.ebean.config.ModuleInfo.class)
@GeneratePrism(io.ebean.config.ModuleInfo.class)
@GeneratePrism(io.ebean.typequery.Generated.class)

@GeneratePrism(jakarta.persistence.Converter.class)
@GeneratePrism(jakarta.persistence.DiscriminatorValue.class)
@GeneratePrism(jakarta.persistence.Embeddable.class)
@GeneratePrism(jakarta.persistence.Embeddable.class)
@GeneratePrism(jakarta.persistence.Entity.class)
@GeneratePrism(jakarta.persistence.Entity.class)
@GeneratePrism(jakarta.persistence.Inheritance.class)
@GeneratePrism(jakarta.persistence.ManyToMany.class)
@GeneratePrism(jakarta.persistence.MappedSuperclass.class)
@GeneratePrism(jakarta.persistence.OneToMany.class)
package io.ebean.querybean.generator;

Expand Down
1 change: 0 additions & 1 deletion querybean-generator/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
requires static io.avaje.prism;
requires static io.ebean.api;
requires static io.ebean.annotation;
requires static io.ebean.querybean;
requires static jakarta.persistence.api;

provides javax.annotation.processing.Processor with io.ebean.querybean.generator.Processor;
Expand Down

0 comments on commit 15d7f47

Please sign in to comment.