branch develop updated (140d4aa -> 7254b37)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository observe. See http://git.codelutin.com/observe.git from 140d4aa [jgitflow-maven-plugin]updating poms for 4.0.2-SNAPSHOT development new e9575b7 [jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts new eaa389d Ajout de licenses manqauntes new d20bbc0 [jgitflow-maven-plugin]updating poms for branch'release/4.0.1' with non-snapshot versions new 79c8956 [jgitflow-maven-plugin]merging 'release/4.0.1' into 'master' new 5183059 [jgitflow-maven-plugin]merging 'master' into 'develop' new 7254b37 [jgitflow-maven-plugin]Updating develop poms back to pre merge state The 6 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 7254b378f7b3c7c5d6fbfc9a0f7331cb84decb6d Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:15:17 2015 +0200 [jgitflow-maven-plugin]Updating develop poms back to pre merge state commit 5183059e51c0bf363db932cfc31fc0631a6a9e98 Merge: e9575b7 79c8956 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:15:15 2015 +0200 [jgitflow-maven-plugin]merging 'master' into 'develop' commit e9575b7fcfc559f99801ab079fd5d4c108d487d1 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:15:14 2015 +0200 [jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts commit 79c895605c92ea5ff3ff0c5e0cf9d6e3ca1220dc Merge: 2ee467e d20bbc0 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:15:07 2015 +0200 [jgitflow-maven-plugin]merging 'release/4.0.1' into 'master' commit d20bbc06670741286c4e006645297839daec6f6b Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:08:16 2015 +0200 [jgitflow-maven-plugin]updating poms for branch'release/4.0.1' with non-snapshot versions commit eaa389d6823dd315d815576a0f9ef100ae7c5737 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:07:50 2015 +0200 Ajout de licenses manqauntes Summary of changes: .../main/resources/db/4.0.1/add-missing-fk-H2.sql | 21 +++++++++++++++++++++ .../main/resources/db/4.0.1/add-missing-fk-PG.sql | 21 +++++++++++++++++++++ .../resources/db/4.0.1/remove-gender-column-H2.sql | 21 +++++++++++++++++++++ .../resources/db/4.0.1/remove-gender-column-PG.sql | 21 +++++++++++++++++++++ 4 files changed, 84 insertions(+) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit eaa389d6823dd315d815576a0f9ef100ae7c5737 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:07:50 2015 +0200 Ajout de licenses manqauntes --- .../main/resources/db/4.0.1/add-missing-fk-H2.sql | 21 +++++++++++++++++++++ .../main/resources/db/4.0.1/add-missing-fk-PG.sql | 21 +++++++++++++++++++++ .../resources/db/4.0.1/remove-gender-column-H2.sql | 21 +++++++++++++++++++++ .../resources/db/4.0.1/remove-gender-column-PG.sql | 21 +++++++++++++++++++++ 4 files changed, 84 insertions(+) diff --git a/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-H2.sql b/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-H2.sql index 2eaf2f9..6574da7 100644 --- a/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-H2.sql +++ b/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-H2.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- ObServe :: Entities +-- %% +-- Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTTYPE FOREIGN KEY(OBJECTTYPE) REFERENCES OBSERVE_SEINE.OBJECTTYPE(TOPIAID) CHECK; ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTFATE FOREIGN KEY(OBJECTFATE) REFERENCES OBSERVE_SEINE.OBJECTFATE(TOPIAID) CHECK; ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTOPERATION FOREIGN KEY(OBJECTOPERATION) REFERENCES OBSERVE_SEINE.OBJECTOPERATION(TOPIAID) CHECK; diff --git a/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-PG.sql b/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-PG.sql index 457b5f5..2ba8e31 100644 --- a/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-PG.sql +++ b/observe-entities/src/main/resources/db/4.0.1/add-missing-fk-PG.sql @@ -1,3 +1,24 @@ +--- +-- #%L +-- ObServe :: Entities +-- %% +-- Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTTYPE FOREIGN KEY(OBJECTTYPE) REFERENCES OBSERVE_SEINE.OBJECTTYPE(TOPIAID); ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTFATE FOREIGN KEY(OBJECTFATE) REFERENCES OBSERVE_SEINE.OBJECTFATE(TOPIAID); ALTER TABLE OBSERVE_SEINE.FLOATINGOBJECT ADD CONSTRAINT FK_FLOATINGOBJECT_OBJECTOPERATION FOREIGN KEY(OBJECTOPERATION) REFERENCES OBSERVE_SEINE.OBJECTOPERATION(TOPIAID); diff --git a/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-H2.sql b/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-H2.sql index a2296b1..aea6b29 100644 --- a/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-H2.sql +++ b/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-H2.sql @@ -1 +1,22 @@ +--- +-- #%L +-- ObServe :: Entities +-- %% +-- Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE observe_common.lengthweightparameter DROP COLUMN IF EXISTS gender; \ No newline at end of file diff --git a/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-PG.sql b/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-PG.sql index a2296b1..aea6b29 100644 --- a/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-PG.sql +++ b/observe-entities/src/main/resources/db/4.0.1/remove-gender-column-PG.sql @@ -1 +1,22 @@ +--- +-- #%L +-- ObServe :: Entities +-- %% +-- Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit +-- %% +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as +-- published by the Free Software Foundation, either version 3 of the +-- License, or (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public +-- License along with this program. If not, see +-- <http://www.gnu.org/licenses/gpl-3.0.html>. +-- #L% +--- ALTER TABLE observe_common.lengthweightparameter DROP COLUMN IF EXISTS gender; \ No newline at end of file -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit d20bbc06670741286c4e006645297839daec6f6b Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:08:16 2015 +0200 [jgitflow-maven-plugin]updating poms for branch'release/4.0.1' with non-snapshot versions --- observe-business/pom.xml | 2 +- observe-entities/pom.xml | 2 +- observe-swing/pom.xml | 2 +- observe-validation/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/observe-business/pom.xml b/observe-business/pom.xml index 746d6ea..be9b8d6 100644 --- a/observe-business/pom.xml +++ b/observe-business/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1-SNAPSHOT</version> + <version>4.0.1</version> </parent> <artifactId>observe-business</artifactId> diff --git a/observe-entities/pom.xml b/observe-entities/pom.xml index 78f3400..43c52af 100644 --- a/observe-entities/pom.xml +++ b/observe-entities/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1-SNAPSHOT</version> + <version>4.0.1</version> </parent> <artifactId>observe-entities</artifactId> diff --git a/observe-swing/pom.xml b/observe-swing/pom.xml index fe76717..72c6587 100644 --- a/observe-swing/pom.xml +++ b/observe-swing/pom.xml @@ -26,7 +26,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1-SNAPSHOT</version> + <version>4.0.1</version> </parent> <artifactId>observe-swing</artifactId> diff --git a/observe-validation/pom.xml b/observe-validation/pom.xml index 94b1524..8bc7767 100644 --- a/observe-validation/pom.xml +++ b/observe-validation/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1-SNAPSHOT</version> + <version>4.0.1</version> </parent> <artifactId>observe-validation</artifactId> diff --git a/pom.xml b/pom.xml index ae606be..2c565c0 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1-SNAPSHOT</version> + <version>4.0.1</version> <packaging>pom</packaging> <name>ObServe</name> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit 79c895605c92ea5ff3ff0c5e0cf9d6e3ca1220dc Merge: 2ee467e d20bbc0 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:15:07 2015 +0200 [jgitflow-maven-plugin]merging 'release/4.0.1' into 'master' observe-business/pom.xml | 2 +- .../fr/ird/observe/ConsolidateDataService.java | 238 +++++++++--------- .../src/main/java/fr/ird/observe/DataService.java | 27 +- .../main/java/fr/ird/observe/DecoratorService.java | 1 + .../main/java/fr/ird/observe/IObserveConfig.java | 2 + .../fr/ird/observe/db/impl/H2DataSourceConfig.java | 4 +- .../java/fr/ird/observe/db/util/PGInstall.java | 65 ++++- .../i18n/observe-business_en_GB.properties | 1 + .../i18n/observe-business_es_ES.properties | 1 + .../i18n/observe-business_fr_FR.properties | 1 + .../src/test/resources/db/4.0.1/referentiel.sql.gz | Bin 0 -> 138260 bytes observe-entities/pom.xml | 2 +- .../java/fr/ird/observe/entities/Entities.java | 62 ++++- .../entities/longline/ActivityLonglineImpl.java | 35 ++- .../observe/entities/longline/SetLonglineImpl.java | 93 ++++++- .../migration/AbstractDataSourceMigration.java | 6 +- .../entities/migration/H2DataSourceMigration.java | 39 ++- .../entities/migration/PGDataSourceMigration.java | 39 ++- .../DataSourceMigrationForVersion_4_0_1.java | 215 ++++++++++++++++ .../observe/entities/seine/ActivitySeineImpl.java | 33 ++- .../src/main/java/fr/ird/observe/util/Numbers.java | 17 ++ .../main/resources/db/4.0.1/add-missing-fk-H2.sql | 26 ++ .../main/resources/db/4.0.1/add-missing-fk-PG.sql | 26 ++ .../resources/db/4.0.1/remove-gender-column-H2.sql | 22 ++ .../resources/db/4.0.1/remove-gender-column-PG.sql | 22 ++ .../src/main/xmi/observe-common.properties | 11 +- .../src/main/xmi/observe-longline.properties | 2 +- .../src/main/xmi/observe-seine.properties | 2 +- observe-swing/pom.xml | 3 +- .../extra/function_enhanced_sets_school_types.sql | 132 ++++++---- .../main/{resources => filters}/log4j.properties | 3 +- .../observe-log4j.properties} | 3 +- .../src/main/filters/observe-ui.properties | 1 - .../main/java/fr/ird/observe/ObserveCLAction.java | 43 ++-- .../main/java/fr/ird/observe/ObserveConfig.java | 83 +++++-- .../java/fr/ird/observe/ObserveConfigOption.java | 33 ++- .../fr/ird/observe/ObserveResourceManager.java | 18 +- .../main/java/fr/ird/observe/ObserveRunner.java | 82 ++++-- .../ird/observe/ui/content/ContentUIHandler.java | 22 ++ .../LonglineCompositionTableModelSupport.java | 21 +- .../impl/longline/SetLonglineUIHandler.java | 25 +- .../impl/longline/ActivityLonglineUIHandler.java | 16 +- .../open/impl/seine/ActivitySeineUIHandler.java | 11 + .../ird/observe/ui/content/ref/impl/PersonUI.css | 2 +- .../table/impl/longline/EncounterUIModel.java | 4 +- ...rUseFeaturesMeasurementLonglinesTableModel.java | 11 + ...GearUseFeaturesMeasurementSeinesTableModel.java | 11 + .../ui/storage/StorageBackupUILauncher.java | 5 +- .../ird/observe/ui/storage/StorageUIHandler.java | 10 +- .../resources/i18n/observe-swing_en_GB.properties | 2 + .../resources/i18n/observe-swing_es_ES.properties | 2 + .../resources/i18n/observe-swing_fr_FR.properties | 4 +- observe-validation/pom.xml | 2 +- .../field/ObserveCollectionUniqueKeyValidator.java | 276 +++++++++++++++++++++ ...hWeightParameter-n1-create-error-validation.xml | 34 ++- ...hWeightParameter-n1-update-error-validation.xml | 34 ++- .../i18n/observe-validation_fr_FR.properties | 2 +- .../src/main/resources/validators.xml | 1 + pom.xml | 24 +- 59 files changed, 1551 insertions(+), 363 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit e9575b7fcfc559f99801ab079fd5d4c108d487d1 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:15:14 2015 +0200 [jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts --- observe-business/pom.xml | 2 +- observe-entities/pom.xml | 2 +- observe-swing/pom.xml | 2 +- observe-validation/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/observe-business/pom.xml b/observe-business/pom.xml index b5a788b..be9b8d6 100644 --- a/observe-business/pom.xml +++ b/observe-business/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.2-SNAPSHOT</version> + <version>4.0.1</version> </parent> <artifactId>observe-business</artifactId> diff --git a/observe-entities/pom.xml b/observe-entities/pom.xml index 819541d..43c52af 100644 --- a/observe-entities/pom.xml +++ b/observe-entities/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.2-SNAPSHOT</version> + <version>4.0.1</version> </parent> <artifactId>observe-entities</artifactId> diff --git a/observe-swing/pom.xml b/observe-swing/pom.xml index 320bbca..72c6587 100644 --- a/observe-swing/pom.xml +++ b/observe-swing/pom.xml @@ -26,7 +26,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.2-SNAPSHOT</version> + <version>4.0.1</version> </parent> <artifactId>observe-swing</artifactId> diff --git a/observe-validation/pom.xml b/observe-validation/pom.xml index 51e2c98..8bc7767 100644 --- a/observe-validation/pom.xml +++ b/observe-validation/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.2-SNAPSHOT</version> + <version>4.0.1</version> </parent> <artifactId>observe-validation</artifactId> diff --git a/pom.xml b/pom.xml index 18fc25a..2c565c0 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.2-SNAPSHOT</version> + <version>4.0.1</version> <packaging>pom</packaging> <name>ObServe</name> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit 5183059e51c0bf363db932cfc31fc0631a6a9e98 Merge: e9575b7 79c8956 Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:15:15 2015 +0200 [jgitflow-maven-plugin]merging 'master' into 'develop' .../main/resources/db/4.0.1/add-missing-fk-H2.sql | 21 +++++++++++++++++++++ .../main/resources/db/4.0.1/add-missing-fk-PG.sql | 21 +++++++++++++++++++++ .../resources/db/4.0.1/remove-gender-column-H2.sql | 21 +++++++++++++++++++++ .../resources/db/4.0.1/remove-gender-column-PG.sql | 21 +++++++++++++++++++++ 4 files changed, 84 insertions(+) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit 7254b378f7b3c7c5d6fbfc9a0f7331cb84decb6d Author: Maven Release <maven-release@codelutin.com> Date: Fri Aug 14 11:15:17 2015 +0200 [jgitflow-maven-plugin]Updating develop poms back to pre merge state --- observe-business/pom.xml | 2 +- observe-entities/pom.xml | 2 +- observe-swing/pom.xml | 2 +- observe-validation/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/observe-business/pom.xml b/observe-business/pom.xml index be9b8d6..b5a788b 100644 --- a/observe-business/pom.xml +++ b/observe-business/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1</version> + <version>4.0.2-SNAPSHOT</version> </parent> <artifactId>observe-business</artifactId> diff --git a/observe-entities/pom.xml b/observe-entities/pom.xml index 43c52af..819541d 100644 --- a/observe-entities/pom.xml +++ b/observe-entities/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1</version> + <version>4.0.2-SNAPSHOT</version> </parent> <artifactId>observe-entities</artifactId> diff --git a/observe-swing/pom.xml b/observe-swing/pom.xml index 72c6587..320bbca 100644 --- a/observe-swing/pom.xml +++ b/observe-swing/pom.xml @@ -26,7 +26,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1</version> + <version>4.0.2-SNAPSHOT</version> </parent> <artifactId>observe-swing</artifactId> diff --git a/observe-validation/pom.xml b/observe-validation/pom.xml index 8bc7767..51e2c98 100644 --- a/observe-validation/pom.xml +++ b/observe-validation/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1</version> + <version>4.0.2-SNAPSHOT</version> </parent> <artifactId>observe-validation</artifactId> diff --git a/pom.xml b/pom.xml index 2c565c0..18fc25a 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ <groupId>fr.ird.observe</groupId> <artifactId>observe</artifactId> - <version>4.0.1</version> + <version>4.0.2-SNAPSHOT</version> <packaging>pom</packaging> <name>ObServe</name> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.
participants (1)
-
codelutin.com scm