Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vzakharchenko committed Mar 8, 2020
1 parent d914e2e commit 04ba76b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public class QUserrole extends com.querydsl.sql.RelationalPathBase<QUserrole> {

public final com.querydsl.sql.PrimaryKey<QUserrole> userrolePkey = createPrimaryKey(id);

public final com.querydsl.sql.ForeignKey<QRole> userroleRoleIdFkey = createForeignKey(roleId, "ID");

public final com.querydsl.sql.ForeignKey<QUserdata> userroleUserIdFkey = createForeignKey(userId, "ID");

public final com.querydsl.sql.ForeignKey<QRole> userroleRoleIdFkey = createForeignKey(roleId, "ID");

public QUserrole(String variable) {
super(QUserrole.class, forVariable(variable), "PUBLIC", "USERROLE");
addMetadata();
Expand Down
4 changes: 1 addition & 3 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ tagName=`cat $PROPERTY_FILE | grep "scm.tag" | grep -i -v -E "scm.tagNameFormat"
tagVersion=`cat $PROPERTY_FILE | grep "project.rel.com.github.vzakharchenko..dynamic-orm" | cut -d'=' -f2`
tagDevVersion=`cat $PROPERTY_FILE | grep "project.dev.com.github.vzakharchenko..dynamic-orm" | cut -d'=' -f2`

releaseNotes=`cat docs/release/${tagVersion}.txt`;
releaseNotes=`cat ./docs/release/${tagVersion}.txt`;

if [[ "x${tagVersion}" == "x" ]]; then
echo "tagVersion is empty"
Expand All @@ -66,8 +66,6 @@ if [[ "x${tagName}" == "x" ]]; then
fi
# get perform release
mvn -Psign clean release:perform -Darguments=-Dgpg.passphrase=${password}
# build keycloak-radius
cd ../keycloak
# update version of keycloak-radius
mvn versions:set -DnewVersion=$tagVersion
# build keycloak-radius
Expand Down

0 comments on commit 04ba76b

Please sign in to comment.