Query DSL HBM Plugin

Generate QDSL model files from Hibernate HBM files

License

License

Categories

Categories

Maven Build Tools Querydsl Data Databases
GroupId

GroupId

com.devappliance.qdslhbmplugin
ArtifactId

ArtifactId

querydsl-hbm-maven-plugin
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Query DSL HBM Plugin
Generate QDSL model files from Hibernate HBM files
Project URL

Project URL

https://github.com/gibahjoe/querydsl-hbbm-maven-plugin
Project Organization

Project Organization

Devappliance
Source Code Management

Source Code Management

https://github.com/gibahjoe/querydsl-hbbm-maven-plugin

Download querydsl-hbm-maven-plugin

How to add to project

<plugin>
    <groupId>com.devappliance.qdslhbmplugin</groupId>
    <artifactId>querydsl-hbm-maven-plugin</artifactId>
    <version>1.0</version>
</plugin>

Dependencies

compile (5)

Group / Artifact Type Version
com.querydsl : querydsl-jpa-codegen jar 4.2.1
com.querydsl : querydsl-jpa jar 4.2.1
org.apache.maven : maven-plugin-api jar 2.0
org.apache.maven : maven-project jar 2.0.9
org.hibernate : hibernate-core jar 5.4.2.Final

provided (2)

Group / Artifact Type Version
com.querydsl : querydsl-apt jar 4.2.1
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.4

test (1)

Group / Artifact Type Version
junit : junit jar 3.8.1

Project Modules

There are no modules declared in this project.

querydsl-hbbm-maven-plugin

Plugin for QueryDsl to generate Model files from Hibernate hbm.xml files

Simple usage

            <plugin>
                <groupId>com.devappliance.qdslhbmplugin</groupId>
                <artifactId>querydsl-hbm-maven-plugin</artifactId>
                <version>1.0</version>
                <dependencies>
                    <dependency>
                        <groupId>org.hibernate</groupId>
                        <artifactId>hibernate-core</artifactId>
                        <version>4.3.8.Final</version>
                    </dependency>
                </dependencies>
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>qdsl</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <hibernateConfigFile>${basedir}/path/to/mapping/file</hibernateConfigFile>
                    <targetFolder>target/generated-sources/java/queryDsl</targetFolder>
                </configuration>
            </plugin>

Versions

Version
1.0