This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch coheigea/jpa in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git
commit 2c65a14e40f252902bd511882ce28959c77ea0bd Author: Colm O hEigeartaigh <[email protected]> AuthorDate: Wed May 13 15:53:05 2026 +0100 Copy JPA classes form Syncope into the project --- services/idp-core/pom.xml | 36 ++++++++++++------------------------ 1 file changed, 12 insertions(+), 24 deletions(-) diff --git a/services/idp-core/pom.xml b/services/idp-core/pom.xml index 58f598d8..e86724c0 100644 --- a/services/idp-core/pom.xml +++ b/services/idp-core/pom.xml @@ -208,30 +208,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <executions> - <execution> - <phase>generate-sources</phase> - <goals> - <goal>unpack</goal> - </goals> - <configuration> - <artifactItems> - <artifactItem> - <groupId>org.apache.syncope.core</groupId> - <artifactId>syncope-core-persistence-jpa</artifactId> - <version>2.1.6</version> - <destFileName>fediz-oidc.war</destFileName> - <outputDirectory>${project.build.outputDirectory}</outputDirectory> - <includes>org/springframework/orm/jpa/vendor/*.class</includes> - </artifactItem> - </artifactItems> - </configuration> - </execution> - </executions> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> @@ -245,6 +221,18 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <executions> + <execution> + <id>validate</id> + <configuration> + <excludes>**/org/springframework/orm/jpa/vendor/**/*.java</excludes> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build>
