From b1f4f8e9d31f7094a2826debfd2a7d7af2b2cd60 Mon Sep 17 00:00:00 2001 From: Olivier Maury <Olivier.Maury@inrae.fr> Date: Mon, 5 Feb 2024 15:56:52 +0100 Subject: [PATCH] =?UTF-8?q?Version=200.1.7-SNAPSHOT=20et=20mise=20=C3=A0?= =?UTF-8?q?=20jour=20des=20d=C3=A9pendances.=20refs=20#44?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../issue_templates/passer-la-version-en-SNAPSHOT.md | 8 ++++++++ pom.xml | 10 +++++----- www-client/pom.xml | 2 +- www-server/pom.xml | 8 ++++---- www-shared/pom.xml | 2 +- 5 files changed, 19 insertions(+), 11 deletions(-) create mode 100644 .gitlab/issue_templates/passer-la-version-en-SNAPSHOT.md diff --git a/.gitlab/issue_templates/passer-la-version-en-SNAPSHOT.md b/.gitlab/issue_templates/passer-la-version-en-SNAPSHOT.md new file mode 100644 index 0000000..8538d27 --- /dev/null +++ b/.gitlab/issue_templates/passer-la-version-en-SNAPSHOT.md @@ -0,0 +1,8 @@ +Avant tout développement pour le nouveau jalon : + +- [ ] créer l'étiquette pour la version terminée +- [ ] passer les modules Maven en XXX-SNAPSHOT + ```sh + mvn versions:set -DnewVersion=XXX-SNAPSHOT && mvn versions:commit + ``` +- [ ] mettre à jour les versions des dépendances dans le même temps diff --git a/pom.xml b/pom.xml index 9fe56fd..1599ea5 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>fr.agrometinfo</groupId> <artifactId>www</artifactId> - <version>0.1.6</version> + <version>0.1.7-SNAPSHOT</version> <packaging>pom</packaging> <name>AgroMetInfo web app</name> <description>Website for AgroMetInfo in Jakarta EE 10 and GWT.</description> @@ -44,10 +44,10 @@ <domino.ui.version>1.0.5</domino.ui.version> <domino.jackson.version>1.0.3</domino.jackson.version> <domino.mvp.version>1.0.1</domino.mvp.version> - <gwt.version>2.10.0</gwt.version> - <hibernate.version>6.2.13.Final</hibernate.version> - <jersey.version>3.1.3</jersey.version> - <junit.version>5.10.1</junit.version> + <gwt.version>2.11.0</gwt.version> + <hibernate.version>6.2.22.Final</hibernate.version> + <jersey.version>3.1.5</jersey.version> + <junit.version>5.10.2</junit.version> <log4j.version>2.22.1</log4j.version> <lombok.version>1.18.30</lombok.version> <weld.version>4.0.3.Final</weld.version> diff --git a/www-client/pom.xml b/www-client/pom.xml index cab7e11..92eea0e 100644 --- a/www-client/pom.xml +++ b/www-client/pom.xml @@ -7,7 +7,7 @@ <parent> <groupId>fr.agrometinfo</groupId> <artifactId>www</artifactId> - <version>0.1.6</version> + <version>0.1.7-SNAPSHOT</version> </parent> <artifactId>www-client</artifactId> diff --git a/www-server/pom.xml b/www-server/pom.xml index a3e4b3e..e622b46 100644 --- a/www-server/pom.xml +++ b/www-server/pom.xml @@ -7,7 +7,7 @@ <parent> <groupId>fr.agrometinfo</groupId> <artifactId>www</artifactId> - <version>0.1.6</version> + <version>0.1.7-SNAPSHOT</version> </parent> <artifactId>www-server</artifactId> @@ -15,9 +15,9 @@ <name>AgroMetInfo web app - server</name> <properties> - <mockito-core.version>5.5.0</mockito-core.version> + <mockito-core.version>5.10.0</mockito-core.version> <sava.version>0.0.1-SNAPSHOT</sava.version> - <swagger.version>2.2.19</swagger.version> + <swagger.version>2.2.20</swagger.version> <checkstyle.config.location>file://${basedir}/../config/sun_checks.xml</checkstyle.config.location> </properties> @@ -153,7 +153,7 @@ <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> - <version>42.7.0</version> + <version>42.7.1</version> </dependency> <!-- SAVA --> <dependency> diff --git a/www-shared/pom.xml b/www-shared/pom.xml index 4baa5c6..d796e38 100644 --- a/www-shared/pom.xml +++ b/www-shared/pom.xml @@ -7,7 +7,7 @@ <parent> <groupId>fr.agrometinfo</groupId> <artifactId>www</artifactId> - <version>0.1.6</version> + <version>0.1.7-SNAPSHOT</version> </parent> <artifactId>www-shared</artifactId> -- GitLab