Unified Queries for Java
Go to file
dependabot[bot] 55c2e31e97
Bump classgraph from 4.8.105 to 4.8.107
Bumps [classgraph](https://github.com/classgraph/classgraph) from 4.8.105 to 4.8.107.
- [Release notes](https://github.com/classgraph/classgraph/releases)
- [Commits](https://github.com/classgraph/classgraph/compare/classgraph-4.8.105...classgraph-4.8.107)

---
updated-dependencies:
- dependency-name: io.github.classgraph:classgraph
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-03 06:43:50 +00:00
.github
db
deploy/.m2
devops
querydsl-ant-test
querydsl-apt
querydsl-bom
querydsl-codegen Fix classgraph scope 2021-06-02 23:28:16 +02:00
querydsl-codegen-utils Merge pull request #2857 from querydsl/fix-classgraph-scope 2021-06-03 00:14:24 +02:00
querydsl-collections Merge pull request #2853 from querydsl/dependabot/maven/org.openjdk.jmh-jmh-generator-annprocess-1.32 2021-06-03 00:14:43 +02:00
querydsl-core Merge pull request #2857 from querydsl/fix-classgraph-scope 2021-06-03 00:14:24 +02:00
querydsl-docs
querydsl-examples Merge pull request #2838 from querydsl/dependabot/maven/kotlin.version-1.5.20-M1 2021-06-02 23:34:36 +02:00
querydsl-guava
querydsl-hibernate-search
querydsl-jdo Merge pull request #2857 from querydsl/fix-classgraph-scope 2021-06-03 00:14:24 +02:00
querydsl-jpa Merge pull request #2851 from querydsl/dependabot/maven/org.hibernate-hibernate-annotations-3.5.6-Final 2021-06-03 08:08:47 +02:00
querydsl-jpa-codegen
querydsl-kotlin
querydsl-kotlin-codegen
querydsl-lucene3
querydsl-lucene4
querydsl-lucene5
querydsl-maven-plugin Merge pull request #2842 from querydsl/dependabot/maven/javax.jdo-jdo2-api-2.3-20090302111651 2021-06-02 23:34:27 +02:00
querydsl-mongodb
querydsl-scala Merge pull request #2851 from querydsl/dependabot/maven/org.hibernate-hibernate-annotations-3.5.6-Final 2021-06-03 08:08:47 +02:00
querydsl-spatial
querydsl-sql Merge pull request #2853 from querydsl/dependabot/maven/org.openjdk.jmh-jmh-generator-annprocess-1.32 2021-06-03 00:14:43 +02:00
querydsl-sql-codegen
querydsl-sql-spatial
querydsl-sql-spring
src/main
.gitattributes
.gitignore
CHANGELOG.md Merge pull request #2737 from querydsl/typed-nullif 2021-06-02 23:51:24 +02:00
dist.sh
docker-compose.yml
LICENSE.txt
pom.xml Bump classgraph from 4.8.105 to 4.8.107 2021-06-03 06:43:50 +00:00
README.md Update README.md 2021-06-02 20:44:55 +02:00
release.sh

Querydsl

Querydsl is a framework which enables the construction of type-safe SQL-like queries for multiple backends including JPA, MongoDB and SQL in Java.

Instead of writing queries as inline strings or externalizing them into XML files they are constructed via a fluent API.

Website shields.io Build Status Coverage Status Stackoverflow Maven Central

Getting started

Use these tutorials to get started

Examples

Querydsl example projects

Support

Free support is provided in the Discussion Section and on StackOverflow. Please do not post questions as issue. Such issues will be closed immediately.

How to build

Querydsl provides releases via public Maven repositories, but you can also build the sources yourself like this

$ mvn -Pquickbuild,{projectname} clean install

Where projectname is one of the Maven profiles (e.g. jpa, sql, mongodb, etc. or all)

For more information visit the project homepage at https://querydsl.github.io.

Docker Compose setup

For running tests, a Docker Compose setup is provided. It comes with the following databases:

  • Oracle Express Edition 11g
  • PostgreSQL 9.1.10
  • MySQL 5.5.34
  • Cubrid 9.2

You will need to install Docker and docker-compose.

To launch the database containers:

$ docker-compose up -d

All of the databases' default ports are forwarded to the host machine.

How to contribute

GitHub pull requests are the way to contribute to Querydsl.

If you are unsure about the details of a contribution, ask on the Querydsl Google Group or create a ticket on GitHub.