forked from querydsl/querydsl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request querydsl#1949 from querydsl/querydsl-3.7.4
Querydsl 3.7.4
- Loading branch information
Showing
26 changed files
with
77 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,45 @@ | ||
#!/bin/sh | ||
git checkout QUERYDSL_3 | ||
git pull origin QUERYDSL_3 | ||
mvn versions:set -DgenerateBackupPoms=false | ||
mvn clean deploy -DskipTests -Dgpg.skip=false | ||
./dist.sh | ||
VERSION=$2 | ||
TAG=QUERYDSL_`sed 's/\./_/g' <<< $VERSION` | ||
pre() { | ||
git checkout QUERYDSL_3 | ||
git pull origin QUERYDSL_3 | ||
mvn -Pall,docs versions:set -DgenerateBackupPoms=false -DnewVersion=$VERSION | ||
sed -i '' "s/3\..\../$VERSION/" querydsl-docs/src/main/docbook/en-US/Querydsl_Reference.xml | ||
sed -i '' "s/3\..\../$VERSION/" querydsl-docs/src/main/docbook/ko-KR/Querydsl_Reference.xml | ||
git checkout -b querydsl-$VERSION | ||
git add . | ||
git commit -m "Querydsl $VERSION" | ||
git push origin querydsl-$VERSION | ||
# TODO create PR | ||
} | ||
doit() { | ||
git checkout QUERYDSL_3 | ||
git pull --ff-only origin QUERYDSL_3 | ||
mvn clean deploy -DskipTests -Dgpg.skip=false | ||
./dist.sh | ||
ssh [email protected] "mkdir /var/www/html/static/querydsl/$VERSION" | ||
scp -r target/dist/* [email protected]:/var/www/html/static/querydsl/$VERSION/ | ||
git tag $TAG | ||
git push --tags | ||
echo -e "Don't forget \x1b[33mquerydsl-contrib\x1b[m." | ||
} | ||
post() { | ||
echo "post release stuff" | ||
# TODO update querydsl.com | ||
# TODO close github milestone | ||
# TODO bump version | ||
} | ||
if [ “$1” == “pre” ]; then | ||
pre | ||
elif [ “$1” == “doit” ]; then | ||
doit | ||
elif [ “$1” == “post” ]; then | ||
post | ||
else | ||
echo "./release (pre|doit|post) VERSION" | ||
fi |