Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change sql-codegen exporter settings from a push model to pull model #210

Merged
merged 14 commits into from
Feb 8, 2024
2 changes: 0 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,6 @@ jobs:
keys:
- querydsl-dependencies-{{ checksum "pom.xml" }}
- querydsl-dependencies-
- setup_remote_docker:
docker_layer_caching: true
- run:
name: 'Test'
command: |
Expand Down
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,14 @@
*.jpg binary
*.pdf binary
*.png binary

#
# https://help.github.com/articles/dealing-with-line-endings/
#
# Linux start script should use lf
/querydsl-gradle-plugin/gradlew text eol=lf
/mvnw text eol=lf

# These are Windows script files and should use crlf
*.bat text eol=crlf

7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@ derby.log
.gitignore
.checkstyle

querydsl-gradle-plugin/build/
querydsl-gradle-plugin/.gradle/
# Ignore Gradle project-specific cache directory
.gradle

# Ignore Gradle build output directory
build
7 changes: 5 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,20 @@

<modules>
<module>querydsl-core</module>
<module>querydsl-spatial</module>

<module>querydsl-codegen</module>
<module>querydsl-codegen-utils</module>
<module>querydsl-spatial</module>
<module>querydsl-apt</module>
<module>querydsl-maven-plugin</module>

<module>querydsl-collections</module>
<module>querydsl-guava</module>
<module>querydsl-sql</module>
<module>querydsl-sql-spatial</module>
<module>querydsl-sql-codegen</module>
<module>querydsl-sql-spring</module>
<module>querydsl-maven-plugin</module>

<module>querydsl-jpa</module>
<module>querydsl-jpa-codegen</module>
<module>querydsl-jpa-spring</module>
Expand Down
Loading
Loading