branch develop updated (db7775f -> e79068c)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository nuiton-j2r. See https://gitlab.nuiton.org/nuiton/nuiton-j2r.git from db7775f fixes #4124: Fix x86 arch detection new 7bf2543 fixes #4159: Update JRI, REngine, RServe new e79068c Remove myself from copyright The 2 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 e79068cf8eecc4f38d4aeb0b71860da627e50545 Author: Eric Chatellier <chatellier@codelutin.com> Date: Tue Mar 14 11:25:51 2017 +0100 Remove myself from copyright commit 7bf2543e9e12b6f62abc88031859187d4e84d2c1 Author: Eric Chatellier <chatellier@codelutin.com> Date: Tue Mar 14 11:25:14 2017 +0100 fixes #4159: Update JRI, REngine, RServe Summary of changes: pom.xml | 28 +++++++++---------- src/main/assembly/deps.xml | 2 +- src/main/assembly/full.xml | 2 +- src/main/java/org/nuiton/j2r/REngine.java | 2 +- src/main/java/org/nuiton/j2r/REngineAbstract.java | 2 +- src/main/java/org/nuiton/j2r/RException.java | 2 +- src/main/java/org/nuiton/j2r/RInstructions.java | 2 +- src/main/java/org/nuiton/j2r/RProxy.java | 2 +- src/main/java/org/nuiton/j2r/jni/RJniEngine.java | 4 +-- src/main/java/org/nuiton/j2r/jni/RNative.java | 2 +- src/main/java/org/nuiton/j2r/net/RNetEngine.java | 2 +- src/main/java/org/nuiton/j2r/types/RDataFrame.java | 2 +- src/main/java/org/nuiton/j2r/types/REXP.java | 2 +- .../java/org/nuiton/j2r/types/REXPAbstract.java | 2 +- src/main/java/org/nuiton/j2r/types/RList.java | 2 +- src/site/rst/etude.rst | 23 ++++++++-------- src/site/rst/index.rst | 18 ++++++------ src/site/rst/installTest.rst | 2 +- src/site/rst/installation.rst | 2 +- src/site/rst/module.rst | 32 +++++++++++----------- src/site/site.xml | 2 +- .../java/org/nuiton/j2r/AbstractEngineTest.java | 2 +- src/test/java/org/nuiton/j2r/DataframeTest.java | 2 +- src/test/java/org/nuiton/j2r/JNITest.java | 2 +- src/test/java/org/nuiton/j2r/JPurTest.java | 2 +- src/test/java/org/nuiton/j2r/ListTest.java | 2 +- src/test/java/org/nuiton/j2r/LutinTimer.java | 2 +- src/test/java/org/nuiton/j2r/NetTest.java | 2 +- src/test/java/org/nuiton/j2r/TestConstants.java | 2 +- src/test/resources/log4j.properties | 2 +- 30 files changed, 76 insertions(+), 79 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-j2r. See https://gitlab.nuiton.org/nuiton/nuiton-j2r.git commit 7bf2543e9e12b6f62abc88031859187d4e84d2c1 Author: Eric Chatellier <chatellier@codelutin.com> Date: Tue Mar 14 11:25:14 2017 +0100 fixes #4159: Update JRI, REngine, RServe --- pom.xml | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/pom.xml b/pom.xml index fcd03be..8fdff6f 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ #%L Nuiton Java-2-R library %% - Copyright (C) 2006 - 2017 CodeLutin, Chatellier Eric, Chemit Tony + Copyright (C) 2006 - 2017 CodeLutin, Chemit Tony %% This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -49,18 +49,6 @@ <developers> <developer> - <id>tchemit</id> - <name>Tony Chemit</name> - <email>chemit@codelutin.com</email> - <organization>CodeLutin</organization> - <organizationUrl>http://www.codelutin.com/</organizationUrl> - <roles> - <role>developer</role> - </roles> - <timezone>Europe/Paris</timezone> - </developer> - - <developer> <id>jcouteau</id> <name>Jean Couteau</name> <email>couteau@codelutin.com</email> @@ -98,6 +86,16 @@ </developer> </developers> + <contributors> + <contributor> + <name>Tony Chemit</name> + <roles> + <role>developer</role> + </roles> + <timezone>Europe/Paris</timezone> + </contributor> + </contributors> + <scm> <connection>scm:git:git@gitlab.nuiton.org:nuiton/nuiton-j2r.git</connection> <developerConnection>scm:git:git@gitlab.nuiton.org:nuiton/nuiton-j2r.git</developerConnection> @@ -111,7 +109,7 @@ <license.licenseName>gpl_v3</license.licenseName> - <rengineVersion>1.7-3</rengineVersion> + <rengineVersion>1.8-5</rengineVersion> <locales>fr</locales> <siteSourcesType>rst</siteSourcesType> @@ -139,7 +137,7 @@ <dependency> <groupId>org.nuiton.thirdparty</groupId> <artifactId>JRI</artifactId> - <version>0.9-6</version> + <version>0.9-9</version> <scope>compile</scope> </dependency> -- 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-j2r. See https://gitlab.nuiton.org/nuiton/nuiton-j2r.git commit e79068cf8eecc4f38d4aeb0b71860da627e50545 Author: Eric Chatellier <chatellier@codelutin.com> Date: Tue Mar 14 11:25:51 2017 +0100 Remove myself from copyright --- src/main/assembly/deps.xml | 2 +- src/main/assembly/full.xml | 2 +- src/main/java/org/nuiton/j2r/REngine.java | 2 +- src/main/java/org/nuiton/j2r/REngineAbstract.java | 2 +- src/main/java/org/nuiton/j2r/RException.java | 2 +- src/main/java/org/nuiton/j2r/RInstructions.java | 2 +- src/main/java/org/nuiton/j2r/RProxy.java | 2 +- src/main/java/org/nuiton/j2r/jni/RJniEngine.java | 4 +-- src/main/java/org/nuiton/j2r/jni/RNative.java | 2 +- src/main/java/org/nuiton/j2r/net/RNetEngine.java | 2 +- src/main/java/org/nuiton/j2r/types/RDataFrame.java | 2 +- src/main/java/org/nuiton/j2r/types/REXP.java | 2 +- .../java/org/nuiton/j2r/types/REXPAbstract.java | 2 +- src/main/java/org/nuiton/j2r/types/RList.java | 2 +- src/site/rst/etude.rst | 23 ++++++++-------- src/site/rst/index.rst | 18 ++++++------ src/site/rst/installTest.rst | 2 +- src/site/rst/installation.rst | 2 +- src/site/rst/module.rst | 32 +++++++++++----------- src/site/site.xml | 2 +- .../java/org/nuiton/j2r/AbstractEngineTest.java | 2 +- src/test/java/org/nuiton/j2r/DataframeTest.java | 2 +- src/test/java/org/nuiton/j2r/JNITest.java | 2 +- src/test/java/org/nuiton/j2r/JPurTest.java | 2 +- src/test/java/org/nuiton/j2r/ListTest.java | 2 +- src/test/java/org/nuiton/j2r/LutinTimer.java | 2 +- src/test/java/org/nuiton/j2r/NetTest.java | 2 +- src/test/java/org/nuiton/j2r/TestConstants.java | 2 +- src/test/resources/log4j.properties | 2 +- 29 files changed, 63 insertions(+), 64 deletions(-) diff --git a/src/main/assembly/deps.xml b/src/main/assembly/deps.xml index eb7fb61..40fcbc5 100644 --- a/src/main/assembly/deps.xml +++ b/src/main/assembly/deps.xml @@ -2,7 +2,7 @@ #%L Nuiton Java-2-R %% - Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + Copyright (C) 2006 - 2012 CodeLutin %% This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/src/main/assembly/full.xml b/src/main/assembly/full.xml index 4be85d8..2230d63 100644 --- a/src/main/assembly/full.xml +++ b/src/main/assembly/full.xml @@ -2,7 +2,7 @@ #%L Nuiton Java-2-R %% - Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + Copyright (C) 2006 - 2012 CodeLutin %% This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/REngine.java b/src/main/java/org/nuiton/j2r/REngine.java index f02e95c..72349e7 100644 --- a/src/main/java/org/nuiton/j2r/REngine.java +++ b/src/main/java/org/nuiton/j2r/REngine.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/REngineAbstract.java b/src/main/java/org/nuiton/j2r/REngineAbstract.java index 632b005..b1fb7a7 100644 --- a/src/main/java/org/nuiton/j2r/REngineAbstract.java +++ b/src/main/java/org/nuiton/j2r/REngineAbstract.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/RException.java b/src/main/java/org/nuiton/j2r/RException.java index b598961..081f97a 100644 --- a/src/main/java/org/nuiton/j2r/RException.java +++ b/src/main/java/org/nuiton/j2r/RException.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/RInstructions.java b/src/main/java/org/nuiton/j2r/RInstructions.java index 3e8b460..2a25638 100644 --- a/src/main/java/org/nuiton/j2r/RInstructions.java +++ b/src/main/java/org/nuiton/j2r/RInstructions.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/RProxy.java b/src/main/java/org/nuiton/j2r/RProxy.java index a71b226..179a282 100644 --- a/src/main/java/org/nuiton/j2r/RProxy.java +++ b/src/main/java/org/nuiton/j2r/RProxy.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/jni/RJniEngine.java b/src/main/java/org/nuiton/j2r/jni/RJniEngine.java index 68459ba..973e7bd 100644 --- a/src/main/java/org/nuiton/j2r/jni/RJniEngine.java +++ b/src/main/java/org/nuiton/j2r/jni/RJniEngine.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2013 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2013 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as @@ -67,7 +67,7 @@ public class RJniEngine extends REngineAbstract implements REngine { * Initialize the R engine. * * @return true if initialized, false otherwise. - * + * * @see org.nuiton.j2r.REngine#init() */ @Override diff --git a/src/main/java/org/nuiton/j2r/jni/RNative.java b/src/main/java/org/nuiton/j2r/jni/RNative.java index 594542d..f48bb0c 100644 --- a/src/main/java/org/nuiton/j2r/jni/RNative.java +++ b/src/main/java/org/nuiton/j2r/jni/RNative.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2013 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2013 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/net/RNetEngine.java b/src/main/java/org/nuiton/j2r/net/RNetEngine.java index 4889e60..14a6c9d 100644 --- a/src/main/java/org/nuiton/j2r/net/RNetEngine.java +++ b/src/main/java/org/nuiton/j2r/net/RNetEngine.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/types/RDataFrame.java b/src/main/java/org/nuiton/j2r/types/RDataFrame.java index 152495b..0b79a0d 100644 --- a/src/main/java/org/nuiton/j2r/types/RDataFrame.java +++ b/src/main/java/org/nuiton/j2r/types/RDataFrame.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/types/REXP.java b/src/main/java/org/nuiton/j2r/types/REXP.java index c16052f..7e35435 100644 --- a/src/main/java/org/nuiton/j2r/types/REXP.java +++ b/src/main/java/org/nuiton/j2r/types/REXP.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/types/REXPAbstract.java b/src/main/java/org/nuiton/j2r/types/REXPAbstract.java index 8993c2e..166b9b5 100644 --- a/src/main/java/org/nuiton/j2r/types/REXPAbstract.java +++ b/src/main/java/org/nuiton/j2r/types/REXPAbstract.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/main/java/org/nuiton/j2r/types/RList.java b/src/main/java/org/nuiton/j2r/types/RList.java index e2d3f50..181b7de 100644 --- a/src/main/java/org/nuiton/j2r/types/RList.java +++ b/src/main/java/org/nuiton/j2r/types/RList.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/site/rst/etude.rst b/src/site/rst/etude.rst index c8b9fde..c2f5e01 100644 --- a/src/site/rst/etude.rst +++ b/src/site/rst/etude.rst @@ -1,32 +1,31 @@ -===================================================== -Etude et comparaison des moyens d'accèder à R en Java -===================================================== - - -.. contents:: - .. - .. * #%L .. * Nuiton Java-2-R .. * %% -.. * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric +.. * Copyright (C) 2006 - 2012 CodeLutin .. * %% .. * 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 +.. * 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 +.. * +.. * 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% .. - +===================================================== +Etude et comparaison des moyens d'accèder à R en Java +===================================================== + +.. contents:: + Introduction ============ diff --git a/src/site/rst/index.rst b/src/site/rst/index.rst index 84deb44..1c13164 100644 --- a/src/site/rst/index.rst +++ b/src/site/rst/index.rst @@ -1,29 +1,29 @@ -========== -Nuiton-J2R -========== - .. - .. * #%L .. * Nuiton Java-2-R .. * %% -.. * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric +.. * Copyright (C) 2006 - 2012 CodeLutin .. * %% .. * 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 +.. * 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 +.. * +.. * 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% .. - +========== +Nuiton-J2R +========== + La librairie Nuiton-J2R a pour but de fournir une passerrelle unifiée d'accès à R. Pour exécuter les tests, ne pas oublier de lancer Rserve (R CMD Rserve) et diff --git a/src/site/rst/installTest.rst b/src/site/rst/installTest.rst index c55f29c..452d54c 100644 --- a/src/site/rst/installTest.rst +++ b/src/site/rst/installTest.rst @@ -2,7 +2,7 @@ .. * #%L .. * Nuiton Java-2-R .. * %% -.. * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric +.. * Copyright (C) 2006 - 2012 CodeLutin .. * %% .. * This program is free software: you can redistribute it and/or modify .. * it under the terms of the GNU General Public License as diff --git a/src/site/rst/installation.rst b/src/site/rst/installation.rst index 44e0161..a0721e2 100644 --- a/src/site/rst/installation.rst +++ b/src/site/rst/installation.rst @@ -2,7 +2,7 @@ .. * #%L .. * Nuiton Java-2-R .. * %% -.. * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric +.. * Copyright (C) 2006 - 2012 CodeLutin .. * %% .. * This program is free software: you can redistribute it and/or modify .. * it under the terms of the GNU General Public License as diff --git a/src/site/rst/module.rst b/src/site/rst/module.rst index cd8bb77..bdbe7b5 100644 --- a/src/site/rst/module.rst +++ b/src/site/rst/module.rst @@ -1,36 +1,36 @@ -======================= -Documentation du module -======================= - -.. contents:: - - -La librairie LutinJ2R est une passerelle d'accès à R. Ceci sous-entend qu'à -l'utilisation, il n'est pas nécessaire de se soucier de la technologie à employer -pour contacter R. - .. - .. * #%L .. * Nuiton Java-2-R .. * %% -.. * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric +.. * Copyright (C) 2006 - 2012 CodeLutin .. * %% .. * 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 +.. * 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 +.. * +.. * 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% .. - +======================= +Documentation du module +======================= + +.. contents:: + +La librairie LutinJ2R est une passerelle d'accès à R. Ceci sous-entend qu'à +l'utilisation, il n'est pas nécessaire de se soucier de la technologie à employer +pour contacter R. + + Utilisation =========== diff --git a/src/site/site.xml b/src/site/site.xml index 877acfe..6d630a1 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -3,7 +3,7 @@ #%L Nuiton Java-2-R %% - Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + Copyright (C) 2006 - 2012 CodeLutin %% This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/src/test/java/org/nuiton/j2r/AbstractEngineTest.java b/src/test/java/org/nuiton/j2r/AbstractEngineTest.java index a35a314..74fb8ce 100644 --- a/src/test/java/org/nuiton/j2r/AbstractEngineTest.java +++ b/src/test/java/org/nuiton/j2r/AbstractEngineTest.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/org/nuiton/j2r/DataframeTest.java b/src/test/java/org/nuiton/j2r/DataframeTest.java index b240338..95d88f2 100644 --- a/src/test/java/org/nuiton/j2r/DataframeTest.java +++ b/src/test/java/org/nuiton/j2r/DataframeTest.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/org/nuiton/j2r/JNITest.java b/src/test/java/org/nuiton/j2r/JNITest.java index 0d94d0f..693a27e 100644 --- a/src/test/java/org/nuiton/j2r/JNITest.java +++ b/src/test/java/org/nuiton/j2r/JNITest.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/org/nuiton/j2r/JPurTest.java b/src/test/java/org/nuiton/j2r/JPurTest.java index bc7cd12..e30ed4e 100644 --- a/src/test/java/org/nuiton/j2r/JPurTest.java +++ b/src/test/java/org/nuiton/j2r/JPurTest.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/org/nuiton/j2r/ListTest.java b/src/test/java/org/nuiton/j2r/ListTest.java index dfd8621..5603a84 100644 --- a/src/test/java/org/nuiton/j2r/ListTest.java +++ b/src/test/java/org/nuiton/j2r/ListTest.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/org/nuiton/j2r/LutinTimer.java b/src/test/java/org/nuiton/j2r/LutinTimer.java index 3e48fd3..8359b9d 100644 --- a/src/test/java/org/nuiton/j2r/LutinTimer.java +++ b/src/test/java/org/nuiton/j2r/LutinTimer.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/org/nuiton/j2r/NetTest.java b/src/test/java/org/nuiton/j2r/NetTest.java index a92e52a..1f7c62e 100644 --- a/src/test/java/org/nuiton/j2r/NetTest.java +++ b/src/test/java/org/nuiton/j2r/NetTest.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/java/org/nuiton/j2r/TestConstants.java b/src/test/java/org/nuiton/j2r/TestConstants.java index b127030..67bc9ed 100644 --- a/src/test/java/org/nuiton/j2r/TestConstants.java +++ b/src/test/java/org/nuiton/j2r/TestConstants.java @@ -2,7 +2,7 @@ * #%L * Nuiton Java-2-R * %% - * Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric + * Copyright (C) 2006 - 2012 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as diff --git a/src/test/resources/log4j.properties b/src/test/resources/log4j.properties index 5e04ab5..1dee79d 100644 --- a/src/test/resources/log4j.properties +++ b/src/test/resources/log4j.properties @@ -2,7 +2,7 @@ # #%L # Nuiton Java-2-R # %% -# Copyright (C) 2006 - 2012 CodeLutin, Chatellier Eric +# Copyright (C) 2006 - 2012 CodeLutin # %% # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm