Author: chatellier Date: 2008-09-23 16:45:34 +0000 (Tue, 23 Sep 2008) New Revision: 17 Added: src/site/ src/site/rst/ src/test/java/org/ Removed: doc/ site/ src/test/org/ Modified: changelog pom.xml src/main/java/org/codelutin/j2r/REngine.java src/main/java/org/codelutin/j2r/RException.java src/main/java/org/codelutin/j2r/RProxy.java src/main/java/org/codelutin/j2r/jni/RJniEngine.java src/main/java/org/codelutin/j2r/net/RNetEngine.java src/site/site.xml src/test/java/org/codelutin/j2r/JNITest.java src/test/java/org/codelutin/j2r/JPurTest.java src/test/java/org/codelutin/j2r/LutinTimer.java src/test/java/org/codelutin/j2r/NetTest.java src/test/java/org/codelutin/j2r/TestConstants.java Log: LGPL v3 Update site generation Modified: changelog =================================================================== --- changelog 2008-09-23 16:36:15 UTC (rev 16) +++ changelog 2008-09-23 16:45:34 UTC (rev 17) @@ -1,5 +1,7 @@ lutinj2r (0.2) unstable; urgency=low + * LGPL v3 + * Update site generation * Maven2 layout * UTF-8 * Update pom Modified: pom.xml =================================================================== --- pom.xml 2008-09-23 16:36:15 UTC (rev 16) +++ pom.xml 2008-09-23 16:45:34 UTC (rev 17) @@ -28,6 +28,24 @@ Network ou en JNI.</description> <inceptionYear>2006</inceptionYear> + <!-- Properties --> + <properties> + <!-- id du projet du labs --> + <labs.id>109</labs.id> + + <!-- Test --> + <maven.test.skip>false</maven.test.skip> + </properties> + + <!--Source control management--> + <scm> + <!-- BE WARE, this value will be overriden by inheritance --> + <connection>scm:svn:svn://anonymous@${labs.host}/svnroot/${labs.project}</connection> + + <!-- BE WARE, this value will be overriden by inheritance --> + <developerConnection>scm:svn:svn+ssh://${username}@${labs.host}/svnroot/${labs.project}</developerConnection> + </scm> + <!--Librairies--> <dependencies> <dependency> Modified: src/main/java/org/codelutin/j2r/REngine.java =================================================================== --- src/main/java/org/codelutin/j2r/REngine.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/main/java/org/codelutin/j2r/REngine.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% -* Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, -* Cedric Pineau, Benjamin Poussin, Arnaud Thimel -* -* -* 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 2 -* 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, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*##%*/ +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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>. ##%*/ /* * * RInterface.java Modified: src/main/java/org/codelutin/j2r/RException.java =================================================================== --- src/main/java/org/codelutin/j2r/RException.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/main/java/org/codelutin/j2r/RException.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% -* Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, -* Cedric Pineau, Benjamin Poussin, Arnaud Thimel -* -* -* 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 2 -* 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, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*##%*/ +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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>. ##%*/ /* * * RException.java Modified: src/main/java/org/codelutin/j2r/RProxy.java =================================================================== --- src/main/java/org/codelutin/j2r/RProxy.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/main/java/org/codelutin/j2r/RProxy.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% -* Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, -* Cedric Pineau, Benjamin Poussin, Arnaud Thimel -* -* -* 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 2 -* 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, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*##%*/ +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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>. ##%*/ /* * * RProxy.java Modified: src/main/java/org/codelutin/j2r/jni/RJniEngine.java =================================================================== --- src/main/java/org/codelutin/j2r/jni/RJniEngine.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/main/java/org/codelutin/j2r/jni/RJniEngine.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,35 +1,20 @@ -/* *##% - * Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, - * Cedric Pineau, Benjamin Poussin, Arnaud Thimel +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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 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 2 - * 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. + * GNU General Lesser Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - *##%*/ + * 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>. ##%*/ -/* * - * RJniEngine.java - * - * Created: 22 aout 2006 - * - * @author Arnaud Thimel <thimel@codelutin.com> - * @version $Revision: $ - * - * Mise a jour: $Date: $ - * par : $Author: $ - */ - package org.codelutin.j2r.jni; import org.apache.commons.logging.Log; @@ -40,7 +25,15 @@ import org.rosuda.JRI.Rengine; /** - * + * RJniEngine.java + * + * Created: 22 aout 2006 + * + * @author Arnaud Thimel <thimel@codelutin.com> + * @version $Revision: $ + * + * Mise a jour: $Date: $ + * par : $Author: $ */ public class RJniEngine implements REngine { Modified: src/main/java/org/codelutin/j2r/net/RNetEngine.java =================================================================== --- src/main/java/org/codelutin/j2r/net/RNetEngine.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/main/java/org/codelutin/j2r/net/RNetEngine.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% -* Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, -* Cedric Pineau, Benjamin Poussin, Arnaud Thimel -* -* -* 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 2 -* 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, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*##%*/ +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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>. ##%*/ /* * * RNetEngine.java Copied: src/site (from rev 16, site) Copied: src/site/rst (from rev 16, doc) Modified: src/site/site.xml =================================================================== --- site/site.xml 2008-09-23 16:36:15 UTC (rev 16) +++ src/site/site.xml 2008-09-23 16:45:34 UTC (rev 17) @@ -2,9 +2,9 @@ <project name="LutinJ2R"> <skin> - <groupId>lutinlib</groupId> - <artifactId>lutin-site-skin</artifactId> - <version>0.1</version> + <groupId>org.codelutin</groupId> + <artifactId>maven-lutin-skin</artifactId> + <version>0.2-SNAPSHOT</version> </skin> <bannerLeft> Copied: src/test/java/org (from rev 16, src/test/org) Modified: src/test/java/org/codelutin/j2r/JNITest.java =================================================================== --- src/test/org/codelutin/j2r/JNITest.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/test/java/org/codelutin/j2r/JNITest.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% - * Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, - * Cedric Pineau, Benjamin Poussin, Arnaud Thimel +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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 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 2 - * 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. + * GNU General Lesser Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - *##%*/ + * 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>. ##%*/ /* * * NetTest.java Modified: src/test/java/org/codelutin/j2r/JPurTest.java =================================================================== --- src/test/org/codelutin/j2r/JPurTest.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/test/java/org/codelutin/j2r/JPurTest.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% -* Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, -* Cedric Pineau, Benjamin Poussin, Arnaud Thimel -* -* -* 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 2 -* 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, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*##%*/ +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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>. ##%*/ /* * * JPurTest.java Modified: src/test/java/org/codelutin/j2r/LutinTimer.java =================================================================== --- src/test/org/codelutin/j2r/LutinTimer.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/test/java/org/codelutin/j2r/LutinTimer.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% -* Copyright (C) 2002, 2003, 2004, 2005 Code Lutin, -* Cédric Pineau, Benjamin Poussin, -* -* -* 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 2 -* 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, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*##%*/ +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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>. ##%*/ /* * * Timer.java Modified: src/test/java/org/codelutin/j2r/NetTest.java =================================================================== --- src/test/org/codelutin/j2r/NetTest.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/test/java/org/codelutin/j2r/NetTest.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% - * Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, - * Cedric Pineau, Benjamin Poussin, Arnaud Thimel +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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 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 2 - * 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. + * GNU General Lesser Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - *##%*/ + * 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>. ##%*/ /* * * NetTest.java Modified: src/test/java/org/codelutin/j2r/TestConstants.java =================================================================== --- src/test/org/codelutin/j2r/TestConstants.java 2008-09-23 16:36:15 UTC (rev 16) +++ src/test/java/org/codelutin/j2r/TestConstants.java 2008-09-23 16:45:34 UTC (rev 17) @@ -1,22 +1,19 @@ -/* *##% -* Copyright (C) 2002, 2003, 2004, 2005, 2006 Code Lutin, -* Cedric Pineau, Benjamin Poussin, Arnaud Thimel -* -* -* 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 2 -* 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, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*##%*/ +/* *##% Lutin Java-2-R library + * Copyright (C) 2006 - 2008 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>. ##%*/ /* * * TestConstants.java