branch master updated (f5c47607 -> 31a0b8ee)
This is an automated email from the git hooks/post-receive script. New change to branch master in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git from f5c47607 bad merge? adds bb1905a3 [jgitflow-maven-plugin]updating poms for 2.5-SNAPSHOT development adds 86573375 fixes #9321 passage à struts 2.3.33 qui valide correctement les adresses mail adds ebfdb777 fixes #9321 mauvaise suppression d'un validateur adds 28887264 [jgitflow-maven-plugin]updating poms for 2.4.1 branch with snapshot versions new bc1f20ba add license new a465dd66 [jgitflow-maven-plugin]updating poms for branch'release/2.4.1' with non-snapshot versions new 31a0b8ee release 2.4.1 The 3 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 31a0b8eef8bb14bce74093ab081b3fbdd631a6ef Merge: f5c47607 a465dd66 Author: Maven Release <maven-release@codelutin.com> Date: Thu Aug 3 12:11:54 2017 +0200 release 2.4.1 commit a465dd665979581d2f4792ab6c177c840e16622f Author: Maven Release <maven-release@codelutin.com> Date: Thu Aug 3 11:56:14 2017 +0200 [jgitflow-maven-plugin]updating poms for branch'release/2.4.1' with non-snapshot versions commit bc1f20ba1509f9e1d4ca13411e2493eda6260c28 Author: Maven Release <maven-release@codelutin.com> Date: Thu Aug 3 11:56:00 2017 +0200 add license Summary of changes: faxtomail-persistence/pom.xml | 2 +- faxtomail-service/pom.xml | 2 +- .../faxtomail/services/FaxToMailServiceUtils.java | 6 ++++ .../validators/FaxToMailEmailValidator.java | 42 ---------------------- .../validators/FaxToMailEmailsValidator.java | 23 ++++++------ .../src/main/resources/validators.xml | 2 +- faxtomail-ui-swing/pom.xml | 2 +- faxtomail-ui-web/pom.xml | 2 +- pom.xml | 4 +-- 9 files changed, 23 insertions(+), 62 deletions(-) delete mode 100644 faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/validators/FaxToMailEmailValidator.java -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch master in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit bc1f20ba1509f9e1d4ca13411e2493eda6260c28 Author: Maven Release <maven-release@codelutin.com> Date: Thu Aug 3 11:56:00 2017 +0200 add license --- .../validators/FaxToMailEmailsValidator.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/validators/FaxToMailEmailsValidator.java b/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/validators/FaxToMailEmailsValidator.java index 9001b936..3608d86a 100644 --- a/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/validators/FaxToMailEmailsValidator.java +++ b/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/validators/FaxToMailEmailsValidator.java @@ -1,5 +1,29 @@ package com.franciaflex.faxtomail.services.validators; +/*- + * #%L + * FaxToMail :: Service + * $Id:$ + * $HeadURL:$ + * %% + * Copyright (C) 2014 - 2017 Mac-Groupe, Code Lutin + * %% + * 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% + */ + import com.opensymphony.xwork2.validator.validators.EmailValidator; /** -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch master in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit a465dd665979581d2f4792ab6c177c840e16622f Author: Maven Release <maven-release@codelutin.com> Date: Thu Aug 3 11:56:14 2017 +0200 [jgitflow-maven-plugin]updating poms for branch'release/2.4.1' with non-snapshot versions --- faxtomail-persistence/pom.xml | 2 +- faxtomail-service/pom.xml | 2 +- faxtomail-ui-swing/pom.xml | 2 +- faxtomail-ui-web/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/faxtomail-persistence/pom.xml b/faxtomail-persistence/pom.xml index 81c75673..cebe427a 100644 --- a/faxtomail-persistence/pom.xml +++ b/faxtomail-persistence/pom.xml @@ -25,7 +25,7 @@ <parent> <artifactId>faxtomail</artifactId> <groupId>com.franciaflex</groupId> - <version>2.4.1-SNAPSHOT</version> + <version>2.4.1</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/faxtomail-service/pom.xml b/faxtomail-service/pom.xml index b515f841..d239971d 100644 --- a/faxtomail-service/pom.xml +++ b/faxtomail-service/pom.xml @@ -27,7 +27,7 @@ <parent> <artifactId>faxtomail</artifactId> <groupId>com.franciaflex</groupId> - <version>2.4.1-SNAPSHOT</version> + <version>2.4.1</version> </parent> <groupId>com.franciaflex.faxtomail</groupId> diff --git a/faxtomail-ui-swing/pom.xml b/faxtomail-ui-swing/pom.xml index e8fcde15..c4146b6e 100644 --- a/faxtomail-ui-swing/pom.xml +++ b/faxtomail-ui-swing/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>com.franciaflex</groupId> <artifactId>faxtomail</artifactId> - <version>2.4.1-SNAPSHOT</version> + <version>2.4.1</version> </parent> <groupId>com.franciaflex.faxtomail</groupId> diff --git a/faxtomail-ui-web/pom.xml b/faxtomail-ui-web/pom.xml index 4df603c6..11797d72 100644 --- a/faxtomail-ui-web/pom.xml +++ b/faxtomail-ui-web/pom.xml @@ -27,7 +27,7 @@ <parent> <groupId>com.franciaflex</groupId> <artifactId>faxtomail</artifactId> - <version>2.4.1-SNAPSHOT</version> + <version>2.4.1</version> </parent> <groupId>com.franciaflex.faxtomail</groupId> diff --git a/pom.xml b/pom.xml index 961e6d76..dfc609ca 100644 --- a/pom.xml +++ b/pom.xml @@ -32,7 +32,7 @@ <groupId>com.franciaflex</groupId> <artifactId>faxtomail</artifactId> - <version>2.4.1-SNAPSHOT</version> + <version>2.4.1</version> <packaging>pom</packaging> <name>FaxToMail</name> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch master in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 31a0b8eef8bb14bce74093ab081b3fbdd631a6ef Merge: f5c47607 a465dd66 Author: Maven Release <maven-release@codelutin.com> Date: Thu Aug 3 12:11:54 2017 +0200 release 2.4.1 faxtomail-persistence/pom.xml | 2 +- faxtomail-service/pom.xml | 2 +- .../faxtomail/services/FaxToMailServiceUtils.java | 6 ++++ .../validators/FaxToMailEmailValidator.java | 42 ---------------------- .../validators/FaxToMailEmailsValidator.java | 23 ++++++------ .../src/main/resources/validators.xml | 2 +- faxtomail-ui-swing/pom.xml | 2 +- faxtomail-ui-web/pom.xml | 2 +- pom.xml | 4 +-- 9 files changed, 23 insertions(+), 62 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm