Skip to content

Commit

Permalink
jakartaee/persistence#457 - add union/intersect/except to JPQL and cr…
Browse files Browse the repository at this point in the history
…iteria

Applied review note.

Signed-off-by: Tomáš Kraus <[email protected]>
  • Loading branch information
Tomas-Kraus authored and lukasj committed Nov 30, 2023
1 parent a7caf4c commit 7b3c2cb
Showing 1 changed file with 8 additions and 21 deletions.
29 changes: 8 additions & 21 deletions jpa/eclipselink.jpa.testapps/jpa.test.persistence32/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,31 +82,18 @@
</plugin>
<!-- Static metamodel is used in tests -->
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>4.5</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>eclipselink-jpa-metamodel</id>
<goals>
<goal>process</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<processors>
<processor>org.eclipse.persistence.internal.jpa.modelgen.CanonicalModelProcessor</processor>
</processors>
<outputDirectory>${project.build.directory}/generated-sources/meta-model</outputDirectory>
</configuration>
<id>default-compile</id>
<phase>none</phase>
</execution>
<execution>
<id>compile-with-processor</id>
<phase>compile</phase>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 7b3c2cb

Please sign in to comment.