hibernate-jpamodelgen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.guicedee.services</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>62</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.guicedee.services</groupId> <artifactId>hibernate-parent</artifactId> <version>62</version> </parent> <artifactId>hibernate-jpamodelgen</artifactId> <packaging>jar</packaging> <name>hibernate-jpamodelgen</name> <description>JPMS Module-Info's for a few of the Jakarta Libraries. These will be removed as time goes by</description> <dependencies> <dependency> <groupId>com.guicedee.services</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.guicedee.services</groupId> <artifactId>jakarta.activation</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${maven.hibernate.version}</version> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <createSourcesJar>true</createSourcesJar> <shadeSourcesContent>true</shadeSourcesContent> <shadeTestJar>true</shadeTestJar> <keepDependenciesWithProvidedScope>false</keepDependenciesWithProvidedScope> <artifactSet> <includes> <include>org.hibernate:hibernate-jpamodelgen:*</include> </includes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>module-info.java</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <overwriteExistingFiles>true</overwriteExistingFiles> <module> <moduleInfoFile> src/moditect/module-info.java </moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>