branch develop updated (b6d951fb -> b9eb71c3)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git from b6d951fb - Update guava version to 27.0.1 to prevent CVE-2018-10237 - Update Hibernate to 5.2.18 - Update Liquibase to 3.6.3 - Update Mockito to 2.24 - Update Nuiton-CSV to 3.0 - Update Nuiton-i18n to 3.7 - Update commons-collections4 to 4.2 - Update commons-io to 2.6 - Update commons-lang3 to 3.8.1 new 3cf06d97 fixes #664 Generated database-object statements is not valid if property schema is different from entity one new b9eb71c3 Update commons-collections4 to 4.3 The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit b9eb71c3af191e8f023244de4657aba697cff6da Author: Arnaud Thimel <thimel@codelutin.com> Date: Wed Feb 6 10:00:48 2019 +0100 Update commons-collections4 to 4.3 commit 3cf06d97fe2b0b9a8db62d8d805eb223049493e6 Author: Arnaud Thimel <thimel@codelutin.com> Date: Wed Feb 6 09:58:46 2019 +0100 fixes #664 Generated database-object statements is not valid if property schema is different from entity one by @tchemit Summary of changes: pom.xml | 2 +- .../org/nuiton/topia/templates/EntityHibernateMappingGenerator.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit 3cf06d97fe2b0b9a8db62d8d805eb223049493e6 Author: Arnaud Thimel <thimel@codelutin.com> Date: Wed Feb 6 09:58:46 2019 +0100 fixes #664 Generated database-object statements is not valid if property schema is different from entity one by @tchemit --- .../org/nuiton/topia/templates/EntityHibernateMappingGenerator.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/topia-templates/src/main/java/org/nuiton/topia/templates/EntityHibernateMappingGenerator.java b/topia-templates/src/main/java/org/nuiton/topia/templates/EntityHibernateMappingGenerator.java index 7a447551..3d37dc6e 100644 --- a/topia-templates/src/main/java/org/nuiton/topia/templates/EntityHibernateMappingGenerator.java +++ b/topia-templates/src/main/java/org/nuiton/topia/templates/EntityHibernateMappingGenerator.java @@ -338,8 +338,8 @@ public class EntityHibernateMappingGenerator extends ObjectModelGenerator { // add database-object to create and drop index - String schema = classContext.getSchema(); - boolean withSchema = classContext.isUseSchema(); + String schema = topiaHibernateTagValues.getDbSchemaNameTagValue(attribute.getClassifier(), aPackage, model); + boolean withSchema = schema != null; String tableName; String propertyName; // On many to many relation, the index is already generated by the other table @@ -351,7 +351,7 @@ public class EntityHibernateMappingGenerator extends ObjectModelGenerator { // } else { // one to many - tableName =templateHelper.getDbName(attribute.getClassifier()); + tableName = templateHelper.getDbName(attribute.getClassifier()); propertyName = templateHelper.getReverseDbNameOnReverseAttribute(attribute.getReverseAttribute()); // } -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit b9eb71c3af191e8f023244de4657aba697cff6da Author: Arnaud Thimel <thimel@codelutin.com> Date: Wed Feb 6 10:00:48 2019 +0100 Update commons-collections4 to 4.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3fc51c46..0d62a8fa 100644 --- a/pom.xml +++ b/pom.xml @@ -379,7 +379,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> - <version>4.2</version> + <version>4.3</version> </dependency> <dependency> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm