entity-assist
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jwebmp.guicedee.persistence</groupId> <artifactId>entity-assist</artifactId> <version>0.67.0.2</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.jwebmp.guicedee.persistence</groupId> <artifactId>persistence-parent</artifactId> <version>0.67.0.2</version> </parent> <artifactId>entity-assist</artifactId> <packaging>jar</packaging> <name>Entity Assist</name> <description>Allows for instant query builders and constructs statements for nicer output to the console </description> <url>https://github.com/GedMarc/EntityAssist</url> <dependencies> <dependency> <groupId>com.jwebmp.guicedee.persistence</groupId> <artifactId>guiced-persistence</artifactId> </dependency> <dependency> <groupId>com.jwebmp.guicedee.persistence</groupId> <artifactId>guiced-persistence-btm</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.jwebmp.guicedee.persistence</groupId> <artifactId>guiced-persistence-jpa</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.jwebmp.jpms.commons</groupId> <artifactId>commons-text</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> </dependency> <dependency> <groupId>com.jwebmp.jpms.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <!-- Test Dependencies --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>jsr250-api</artifactId> </dependency> </dependencies> <scm> <url>https://github.com/GedMarc/EntityAssist.git</url> </scm> <issueManagement> <system>Github</system> <url>https://github.com/GedMarc/EntityAssist/issues</url> </issueManagement> <ciManagement> <system>TeamCity</system> <url>http://jwebmp.com/teamcity</url> </ciManagement> <profiles> <profile> <id>jdk8</id> <build> <plugins> <plugin> <groupId>org.hibernate.orm.tooling</groupId> <artifactId>hibernate-enhance-maven-plugin</artifactId> <version>${maven.hibernate.version}</version> <executions> <execution> <configuration> <failOnError>false</failOnError> <enableLazyInitialization>true</enableLazyInitialization> <enableDirtyTracking>false</enableDirtyTracking> <enableAssociationManagement>true</enableAssociationManagement> <enableExtendedEnhancement>true</enableExtendedEnhancement> </configuration> <phase>compile</phase> <goals> <goal>enhance</goal> </goals> </execution> </executions> <configuration> <failOnError>false</failOnError> <enableLazyInitialization>true</enableLazyInitialization> <enableDirtyTracking>false</enableDirtyTracking> <enableAssociationManagement>true</enableAssociationManagement> <enableExtendedEnhancement>true</enableExtendedEnhancement> </configuration> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <goals> <goal>compile</goal> </goals> <inherited>true</inherited> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${maven.hibernate.version}</version> </annotationProcessorPath> <annotationProcessorPath> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${jaxb.version}</version> </annotationProcessorPath> </annotationProcessorPaths> <annotationProcessors> <annotationProcessor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</annotationProcessor> </annotationProcessors> <compilerArguments> <AaddGeneratedAnnotation>false</AaddGeneratedAnnotation> <Adebug>true</Adebug> </compilerArguments> <failOnError>true</failOnError> </configuration> </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/jre11/java/module-info.java </moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>javax.persistence</groupId> <artifactId>javax.persistence-api</artifactId> <type>jar</type> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <type>jar</type> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>javax.transaction-api</artifactId> <type>jar</type> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <type>jar</type> </dependency> </dependencies> </profile> <profile> <id>jdk10</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <goals> <goal>compile</goal> </goals> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${maven.hibernate.version}</version> </annotationProcessorPath> <annotationProcessorPath> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${jaxb.version}</version> </annotationProcessorPath> </annotationProcessorPaths> <annotationProcessors> <annotationProcessor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</annotationProcessor> </annotationProcessors> <compilerArgs> <arg>-AaddGeneratedAnnotation=false</arg> <arg>--patch-module</arg> <arg>java.transaction=${settings.localRepository}/javax/transaction/javax.transaction-api/${javax.transaction.transactionapi}/javax.transaction-api-${javax.transaction.transactionapi}.jar</arg> <arg>--patch-module</arg> <arg>java.xml.bind=${settings.localRepository}/javax/xml/bind/jaxb-api/${jaxb.version}/jaxb-api-${jaxb.version}.jar</arg> </compilerArgs> <compilerArguments> <AaddGeneratedAnnotation>false</AaddGeneratedAnnotation> <Adebug>true</Adebug> </compilerArguments> <failOnError>true</failOnError> </configuration> <dependencies> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${maven.hibernate.version}</version> <!--<optional>true</optional>--> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${jaxb.version}</version> <type>jar</type> </dependency> </dependencies> </plugin> </plugins> </build> </profile> <profile> <id>jdk11</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <goals> <goal>compile</goal> </goals> <inherited>true</inherited> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${maven.hibernate.version}</version> </annotationProcessorPath> <annotationProcessorPath> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${jaxb.version}</version> </annotationProcessorPath> </annotationProcessorPaths> <annotationProcessors> <annotationProcessor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</annotationProcessor> </annotationProcessors> <compilerArguments> <AaddGeneratedAnnotation>false</AaddGeneratedAnnotation> <Adebug>true</Adebug> </compilerArguments> <failOnError>true</failOnError> </configuration> </plugin> <plugin> <groupId>org.hibernate.orm.tooling</groupId> <artifactId>hibernate-enhance-maven-plugin</artifactId> <version>${maven.hibernate.version}</version> <executions> <execution> <configuration> <failOnError>false</failOnError> <enableLazyInitialization>true</enableLazyInitialization> <enableDirtyTracking>false</enableDirtyTracking> <enableAssociationManagement>true</enableAssociationManagement> <enableExtendedEnhancement>true</enableExtendedEnhancement> </configuration> <phase>compile</phase> <goals> <goal>enhance</goal> </goals> </execution> </executions> <configuration> <failOnError>false</failOnError> <enableLazyInitialization>true</enableLazyInitialization> <enableDirtyTracking>false</enableDirtyTracking> <enableAssociationManagement>true</enableAssociationManagement> <enableExtendedEnhancement>true</enableExtendedEnhancement> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${maven.hibernate.version}</version> <!--<optional>true</optional>--> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${jaxb.version}</version> <type>jar</type> </dependency> </dependencies> </profile> <profile> <id>jdk12</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <goals> <goal>compile</goal> </goals> <inherited>true</inherited> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${maven.hibernate.version}</version> </annotationProcessorPath> <annotationProcessorPath> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${jaxb.version}</version> </annotationProcessorPath> </annotationProcessorPaths> <annotationProcessors> <annotationProcessor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</annotationProcessor> </annotationProcessors> <compilerArguments> <AaddGeneratedAnnotation>false</AaddGeneratedAnnotation> <Adebug>true</Adebug> </compilerArguments> <failOnError>true</failOnError> </configuration> </plugin> <plugin> <groupId>org.hibernate.orm.tooling</groupId> <artifactId>hibernate-enhance-maven-plugin</artifactId> <version>${maven.hibernate.version}</version> <executions> <execution> <configuration> <failOnError>false</failOnError> <enableLazyInitialization>true</enableLazyInitialization> <enableDirtyTracking>false</enableDirtyTracking> <enableAssociationManagement>true</enableAssociationManagement> <enableExtendedEnhancement>true</enableExtendedEnhancement> </configuration> <phase>compile</phase> <goals> <goal>enhance</goal> </goals> </execution> </executions> <configuration> <failOnError>false</failOnError> <enableLazyInitialization>true</enableLazyInitialization> <enableDirtyTracking>false</enableDirtyTracking> <enableAssociationManagement>true</enableAssociationManagement> <enableExtendedEnhancement>true</enableExtendedEnhancement> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>${maven.hibernate.version}</version> <!--<optional>true</optional>--> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>${jaxb.version}</version> <type>jar</type> </dependency> </dependencies> </profile> </profiles> </project>