Ethlo back (#2267)

* Return Ethlo plugin

* Return back statick weaving for EclipseLink in order to use lazy fetch
This commit is contained in:
Avgustin Marinov
2025-02-11 12:50:51 +02:00
committed by GitHub
parent 4ded430c39
commit 1e4e45f7bb
14 changed files with 294 additions and 131 deletions

View File

@@ -52,4 +52,33 @@
<version>${eclipselink.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Static weaver for EclipseLink -->
<plugin>
<groupId>com.ethlo.persistence.tools</groupId>
<artifactId>eclipselink-maven-plugin</artifactId>
<version>${eclipselink.maven.plugin.version}</version>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>weave</goal>
</goals>
</execution>
</executions>
<configuration>
<basePackage>org.eclipse.hawkbit.repository.jpa.model</basePackage>
</configuration>
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.jpa</artifactId>
<version>${eclipselink.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>