branch develop updated (65461cd -> 9a284ef)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git from 65461cd -mNuiton-utils uses java 6 new 6743a19 [jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts adds 941d0f1 [jgitflow-maven-plugin]updating poms for 3.0-rc-15 branch with snapshot versions new 19a792a [jgitflow-maven-plugin]updating poms for branch'release/3.0-rc-15' with non-snapshot versions new 2fc4cb2 Add missing file headers new 5b8d214 [jgitflow-maven-plugin]merging 'release/3.0-rc-15' into 'master' new 2505084 [jgitflow-maven-plugin]merging 'master' into 'develop' new 9a284ef [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 9a284ef87c88229eb32929c662f34c637b55203a Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:32 2016 +0200 [jgitflow-maven-plugin]Updating develop poms back to pre merge state commit 2505084222d998e663903ef44552332caf95c39e Merge: 6743a19 5b8d214 Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:32 2016 +0200 [jgitflow-maven-plugin]merging 'master' into 'develop' commit 6743a1910518ce8a4edbe0189f12b338ff2802c6 Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:32 2016 +0200 [jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts commit 5b8d214937efc8cdcb4df9ecc8e2b62384d58dbb Merge: 0a4ee32 2fc4cb2 Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:32 2016 +0200 [jgitflow-maven-plugin]merging 'release/3.0-rc-15' into 'master' commit 2fc4cb285fdbfd69219b03a71a72c0e3d2a96cb4 Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:25 2016 +0200 Add missing file headers commit 19a792a8c5474b583522adbb3fd0e73915a98a0d Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:35:20 2016 +0200 [jgitflow-maven-plugin]updating poms for branch'release/3.0-rc-15' with non-snapshot versions Summary of changes: .../java/org/nuiton/util/sql/SqlFileReader.java | 22 ++++++++++++++++++++++ .../org/nuiton/util/sql/SqlFileReaderTest.java | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) -- 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 nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git commit 19a792a8c5474b583522adbb3fd0e73915a98a0d Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:35:20 2016 +0200 [jgitflow-maven-plugin]updating poms for branch'release/3.0-rc-15' with non-snapshot versions --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6e406e3..79179bc 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ </parent> <artifactId>nuiton-utils</artifactId> - <version>3.0-rc-15-SNAPSHOT</version> + <version>3.0-rc-15</version> <name>Nuiton Utils</name> <description>Library of usefull class to be used in any project.</description> -- 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 nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git commit 2fc4cb285fdbfd69219b03a71a72c0e3d2a96cb4 Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:25 2016 +0200 Add missing file headers --- .../java/org/nuiton/util/sql/SqlFileReader.java | 22 ++++++++++++++++++++++ .../org/nuiton/util/sql/SqlFileReaderTest.java | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/src/main/java/org/nuiton/util/sql/SqlFileReader.java b/src/main/java/org/nuiton/util/sql/SqlFileReader.java index 4c0a12e..d40febb 100644 --- a/src/main/java/org/nuiton/util/sql/SqlFileReader.java +++ b/src/main/java/org/nuiton/util/sql/SqlFileReader.java @@ -1,5 +1,27 @@ package org.nuiton.util.sql; +/*- + * #%L + * Nuiton Utils + * %% + * Copyright (C) 2004 - 2016 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + import java.io.IOException; import java.io.Reader; import java.io.StringReader; diff --git a/src/test/java/org/nuiton/util/sql/SqlFileReaderTest.java b/src/test/java/org/nuiton/util/sql/SqlFileReaderTest.java index 49aa75e..e42ccbb 100644 --- a/src/test/java/org/nuiton/util/sql/SqlFileReaderTest.java +++ b/src/test/java/org/nuiton/util/sql/SqlFileReaderTest.java @@ -1,5 +1,27 @@ package org.nuiton.util.sql; +/*- + * #%L + * Nuiton Utils + * %% + * Copyright (C) 2004 - 2016 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. + * #L% + */ + import junit.framework.TestCase; /** -- 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 nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git commit 5b8d214937efc8cdcb4df9ecc8e2b62384d58dbb Merge: 0a4ee32 2fc4cb2 Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:32 2016 +0200 [jgitflow-maven-plugin]merging 'release/3.0-rc-15' into 'master' pom.xml | 4 +- .../java/org/nuiton/util/sql/SqlFileReader.java | 184 +++++++++++++++++++++ .../org/nuiton/util/sql/SqlFileReaderTest.java | 134 +++++++++++++++ 3 files changed, 320 insertions(+), 2 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 nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git commit 6743a1910518ce8a4edbe0189f12b338ff2802c6 Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:32 2016 +0200 [jgitflow-maven-plugin]updating develop poms to master versions to avoid merge conflicts --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 71f971e..79179bc 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ </parent> <artifactId>nuiton-utils</artifactId> - <version>3.0-SNAPSHOT</version> + <version>3.0-rc-15</version> <name>Nuiton Utils</name> <description>Library of usefull class to be used in any project.</description> -- 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 nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git commit 2505084222d998e663903ef44552332caf95c39e Merge: 6743a19 5b8d214 Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:32 2016 +0200 [jgitflow-maven-plugin]merging 'master' into 'develop' .../java/org/nuiton/util/sql/SqlFileReader.java | 22 ++++++++++++++++++++++ .../org/nuiton/util/sql/SqlFileReaderTest.java | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) -- 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 nuiton-utils. See https://gitlab.nuiton.org/nuiton/nuiton-utils.git commit 9a284ef87c88229eb32929c662f34c637b55203a Author: Maven Release <maven-release@codelutin.com> Date: Fri Sep 2 16:36:32 2016 +0200 [jgitflow-maven-plugin]Updating develop poms back to pre merge state --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 79179bc..71f971e 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ </parent> <artifactId>nuiton-utils</artifactId> - <version>3.0-rc-15</version> + <version>3.0-SNAPSHOT</version> <name>Nuiton Utils</name> <description>Library of usefull class to be used in any project.</description> -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm