Tony CHEMIT pushed to branch release/7.6.13 at ultreiaio / ird-observe Commits: 901e37d3 by Tony Chemit at 2022-05-02T00:56:31+02:00 [jgitflow-maven-plugin]updating poms for branch'release/7.6.13' with non-snapshot versions[skip ci] - - - - - 17e92d53 by Tony Chemit at 2022-05-02T01:04:41+02:00 Problème de quadrant - See #2300 - - - - - 23 changed files: - client-configuration/pom.xml - client-core/pom.xml - client-runner/pom.xml - common-dto/pom.xml - common-persistence/pom.xml - common-service/pom.xml - common-validation/pom.xml - common-validation/src/main/java/fr/ird/observe/validation/validators/QuadrantFieldDtoValidator.java - dto/pom.xml - observe-i18n/pom.xml - observe/pom.xml - persistence/pom.xml - pom.xml - server-configuration/pom.xml - server-core/pom.xml - server-runner/pom.xml - services-client/pom.xml - services-local/pom.xml - services/pom.xml - templates/pom.xml - test/pom.xml - toolbox-maven-plugin/pom.xml - validation/pom.xml Changes: ===================================== client-configuration/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>client-configuration</artifactId> ===================================== client-core/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>client-core</artifactId> ===================================== client-runner/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>client-runner</artifactId> ===================================== common-dto/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <groupId>fr.ird.observe.toolkit</groupId> ===================================== common-persistence/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <groupId>fr.ird.observe.toolkit</groupId> ===================================== common-service/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <groupId>fr.ird.observe.toolkit</groupId> ===================================== common-validation/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <groupId>fr.ird.observe.toolkit</groupId> ===================================== common-validation/src/main/java/fr/ird/observe/validation/validators/QuadrantFieldDtoValidator.java ===================================== @@ -49,7 +49,7 @@ public class QuadrantFieldDtoValidator extends FieldValidatorSupport { throw new ValidationException("No parameter 'fieldName' filled"); } - ReferentialDtoReference ocean = (ReferentialDtoReference) getFieldValue(this.ocean, object); + ReferentialDtoReference<?,?> ocean = (ReferentialDtoReference<?, ?>) getFieldValue(this.ocean, object); if (ocean == null) { throw new ValidationException("could not find ocean named: " + this.ocean); } @@ -59,13 +59,13 @@ public class QuadrantFieldDtoValidator extends FieldValidatorSupport { return; } - int code = ocean.get(ReferentialDtoReference.PROPERTY_CODE); + String code = ocean.get(ReferentialDtoReference.PROPERTY_CODE); boolean valid; switch (code) { - case 1: // Atlantic + case "1": // Atlantic valid= quadrant == 1 || quadrant == 2 || quadrant == 3 || quadrant == 4; break; - case 2: // Indian + case "2": // Indian valid = quadrant == 1 || quadrant == 2; break; default: ===================================== dto/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>dto</artifactId> ===================================== observe-i18n/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>observe-i18n</artifactId> ===================================== observe/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>observe</artifactId> ===================================== persistence/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>persistence</artifactId> ===================================== pom.xml ===================================== @@ -29,7 +29,7 @@ <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> <packaging>pom</packaging> <name>ObServe :: Pom</name> ===================================== server-configuration/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>server-configuration</artifactId> @@ -118,7 +118,7 @@ <dependency> <groupId>fr.ird.observe</groupId> <artifactId>services</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> <scope>compile</scope> </dependency> ===================================== server-core/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>server-core</artifactId> ===================================== server-runner/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>server-runner</artifactId> ===================================== services-client/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>services-client</artifactId> ===================================== services-local/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>services-local</artifactId> ===================================== services/pom.xml ===================================== @@ -25,7 +25,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>services</artifactId> ===================================== templates/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <groupId>fr.ird.observe.toolkit</groupId> ===================================== test/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>test</artifactId> ===================================== toolbox-maven-plugin/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <groupId>fr.ird.observe.toolkit</groupId> ===================================== validation/pom.xml ===================================== @@ -24,7 +24,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>ird-observe</artifactId> - <version>7.6.13-SNAPSHOT</version> + <version>7.6.13</version> </parent> <artifactId>validation</artifactId> View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/-/compare/9bb92985550ca29ce924c89de... -- View it on GitLab: https://gitlab.com/ultreiaio/ird-observe/-/compare/9bb92985550ca29ce924c89de... You're receiving this email because of your account on gitlab.com.