Author: tchemit Date: 2010-04-09 21:10:49 +0200 (Fri, 09 Apr 2010) New Revision: 688 Log: update headers Modified: trunk/src/main/java/org/nuiton/components/cipher/DefaultPlexusCipher.java trunk/src/main/java/org/nuiton/components/sec/dispatcher/DefaultSecDispatcher.java trunk/src/main/java/org/nuiton/helper/plugin/CollectFilesMojo.java trunk/src/main/java/org/nuiton/helper/plugin/SendEmailMojo.java trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java trunk/src/main/java/org/nuiton/io/FileUpdater.java trunk/src/main/java/org/nuiton/io/FileUpdaterHelper.java trunk/src/main/java/org/nuiton/io/MirroredFileUpdater.java trunk/src/main/java/org/nuiton/io/PropertiesDateRemoveFilterStream.java trunk/src/main/java/org/nuiton/io/SortedProperties.java trunk/src/main/java/org/nuiton/io/mail/MailSender.java trunk/src/main/java/org/nuiton/io/mail/ProjectJavamailMailSender.java trunk/src/main/java/org/nuiton/io/rest/DefaultRestClientConfiguration.java trunk/src/main/java/org/nuiton/io/rest/RestClient.java trunk/src/main/java/org/nuiton/io/rest/RestClientConfiguration.java trunk/src/main/java/org/nuiton/io/rest/RestDataNotFoundException.java trunk/src/main/java/org/nuiton/io/rest/RestException.java trunk/src/main/java/org/nuiton/io/rest/RestRequest.java trunk/src/main/java/org/nuiton/io/rest/RestRequestBuilder.java trunk/src/main/java/org/nuiton/io/rest/RestSession.java trunk/src/main/java/org/nuiton/io/xpp3/AbstractXpp3Reader.java trunk/src/main/java/org/nuiton/io/xpp3/DataConverter.java trunk/src/main/java/org/nuiton/io/xpp3/DefaultDataConverter.java trunk/src/main/java/org/nuiton/io/xpp3/PropertyMapper.java trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Helper.java trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Reader.java trunk/src/main/java/org/nuiton/plugin/AbstractPlugin.java trunk/src/main/java/org/nuiton/plugin/DependencyUtil.java trunk/src/main/java/org/nuiton/plugin/Plugin.java trunk/src/main/java/org/nuiton/plugin/PluginHelper.java trunk/src/main/java/org/nuiton/plugin/PluginIOContext.java trunk/src/main/java/org/nuiton/plugin/VelocityTemplateGenerator.java trunk/src/test/java/org/nuiton/helper/plugin/SendEmailMojoTest.java trunk/src/test/java/org/nuiton/io/JavaFileUpdaterTest.java trunk/src/test/java/org/nuiton/io/JaxxFileUpdaterTest.java trunk/src/test/java/org/nuiton/io/xpp3/Identity.java trunk/src/test/java/org/nuiton/io/xpp3/IdentityXpp3Reader.java trunk/src/test/java/org/nuiton/io/xpp3/Xpp3HelperTest.java trunk/src/test/java/org/nuiton/io/xpp3/Xpp3ReaderTest.java trunk/src/test/java/org/nuiton/plugin/AbstractMojoTest.java trunk/src/test/java/org/nuiton/plugin/PluginHelperTest.java trunk/src/test/java/org/nuiton/plugin/TestHelper.java Modified: trunk/src/main/java/org/nuiton/components/cipher/DefaultPlexusCipher.java =================================================================== --- trunk/src/main/java/org/nuiton/components/cipher/DefaultPlexusCipher.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/components/cipher/DefaultPlexusCipher.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.components.cipher; import org.codehaus.plexus.logging.AbstractLogEnabled; Modified: trunk/src/main/java/org/nuiton/components/sec/dispatcher/DefaultSecDispatcher.java =================================================================== --- trunk/src/main/java/org/nuiton/components/sec/dispatcher/DefaultSecDispatcher.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/components/sec/dispatcher/DefaultSecDispatcher.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.components.sec.dispatcher; Modified: trunk/src/main/java/org/nuiton/helper/plugin/CollectFilesMojo.java =================================================================== --- trunk/src/main/java/org/nuiton/helper/plugin/CollectFilesMojo.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/helper/plugin/CollectFilesMojo.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/helper/plugin/SendEmailMojo.java =================================================================== --- trunk/src/main/java/org/nuiton/helper/plugin/SendEmailMojo.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/helper/plugin/SendEmailMojo.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java =================================================================== --- trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/helper/plugin/ShareServerSecretPlugin.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.helper.plugin; import org.apache.commons.lang.StringUtils; Modified: trunk/src/main/java/org/nuiton/io/FileUpdater.java =================================================================== --- trunk/src/main/java/org/nuiton/io/FileUpdater.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/FileUpdater.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/FileUpdaterHelper.java =================================================================== --- trunk/src/main/java/org/nuiton/io/FileUpdaterHelper.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/FileUpdaterHelper.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/MirroredFileUpdater.java =================================================================== --- trunk/src/main/java/org/nuiton/io/MirroredFileUpdater.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/MirroredFileUpdater.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/PropertiesDateRemoveFilterStream.java =================================================================== --- trunk/src/main/java/org/nuiton/io/PropertiesDateRemoveFilterStream.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/PropertiesDateRemoveFilterStream.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.io; import java.io.FilterOutputStream; Modified: trunk/src/main/java/org/nuiton/io/SortedProperties.java =================================================================== --- trunk/src/main/java/org/nuiton/io/SortedProperties.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/SortedProperties.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.io; import org.nuiton.plugin.*; Modified: trunk/src/main/java/org/nuiton/io/mail/MailSender.java =================================================================== --- trunk/src/main/java/org/nuiton/io/mail/MailSender.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/mail/MailSender.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/mail/ProjectJavamailMailSender.java =================================================================== --- trunk/src/main/java/org/nuiton/io/mail/ProjectJavamailMailSender.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/mail/ProjectJavamailMailSender.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/rest/DefaultRestClientConfiguration.java =================================================================== --- trunk/src/main/java/org/nuiton/io/rest/DefaultRestClientConfiguration.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/rest/DefaultRestClientConfiguration.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/rest/RestClient.java =================================================================== --- trunk/src/main/java/org/nuiton/io/rest/RestClient.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/rest/RestClient.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/rest/RestClientConfiguration.java =================================================================== --- trunk/src/main/java/org/nuiton/io/rest/RestClientConfiguration.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/rest/RestClientConfiguration.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/rest/RestDataNotFoundException.java =================================================================== --- trunk/src/main/java/org/nuiton/io/rest/RestDataNotFoundException.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/rest/RestDataNotFoundException.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/rest/RestException.java =================================================================== --- trunk/src/main/java/org/nuiton/io/rest/RestException.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/rest/RestException.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/rest/RestRequest.java =================================================================== --- trunk/src/main/java/org/nuiton/io/rest/RestRequest.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/rest/RestRequest.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/rest/RestRequestBuilder.java =================================================================== --- trunk/src/main/java/org/nuiton/io/rest/RestRequestBuilder.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/rest/RestRequestBuilder.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/rest/RestSession.java =================================================================== --- trunk/src/main/java/org/nuiton/io/rest/RestSession.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/rest/RestSession.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/xpp3/AbstractXpp3Reader.java =================================================================== --- trunk/src/main/java/org/nuiton/io/xpp3/AbstractXpp3Reader.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/xpp3/AbstractXpp3Reader.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/xpp3/DataConverter.java =================================================================== --- trunk/src/main/java/org/nuiton/io/xpp3/DataConverter.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/xpp3/DataConverter.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/xpp3/DefaultDataConverter.java =================================================================== --- trunk/src/main/java/org/nuiton/io/xpp3/DefaultDataConverter.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/xpp3/DefaultDataConverter.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% - * JRedmine client - * Copyright (C) 2009 CodeLutin + * Maven helper plugin + * Copyright (C) 2009 - 2010 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 @@ -84,4 +84,4 @@ return t; } } -} \ No newline at end of file +} Modified: trunk/src/main/java/org/nuiton/io/xpp3/PropertyMapper.java =================================================================== --- trunk/src/main/java/org/nuiton/io/xpp3/PropertyMapper.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/xpp3/PropertyMapper.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Helper.java =================================================================== --- trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Helper.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Helper.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Reader.java =================================================================== --- trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Reader.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/io/xpp3/Xpp3Reader.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/plugin/AbstractPlugin.java =================================================================== --- trunk/src/main/java/org/nuiton/plugin/AbstractPlugin.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/plugin/AbstractPlugin.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/plugin/DependencyUtil.java =================================================================== --- trunk/src/main/java/org/nuiton/plugin/DependencyUtil.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/plugin/DependencyUtil.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/plugin/Plugin.java =================================================================== --- trunk/src/main/java/org/nuiton/plugin/Plugin.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/plugin/Plugin.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/plugin/PluginHelper.java =================================================================== --- trunk/src/main/java/org/nuiton/plugin/PluginHelper.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/plugin/PluginHelper.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/plugin/PluginIOContext.java =================================================================== --- trunk/src/main/java/org/nuiton/plugin/PluginIOContext.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/plugin/PluginIOContext.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/main/java/org/nuiton/plugin/VelocityTemplateGenerator.java =================================================================== --- trunk/src/main/java/org/nuiton/plugin/VelocityTemplateGenerator.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/main/java/org/nuiton/plugin/VelocityTemplateGenerator.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/test/java/org/nuiton/helper/plugin/SendEmailMojoTest.java =================================================================== --- trunk/src/test/java/org/nuiton/helper/plugin/SendEmailMojoTest.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/helper/plugin/SendEmailMojoTest.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/test/java/org/nuiton/io/JavaFileUpdaterTest.java =================================================================== --- trunk/src/test/java/org/nuiton/io/JavaFileUpdaterTest.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/io/JavaFileUpdaterTest.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/test/java/org/nuiton/io/JaxxFileUpdaterTest.java =================================================================== --- trunk/src/test/java/org/nuiton/io/JaxxFileUpdaterTest.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/io/JaxxFileUpdaterTest.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/test/java/org/nuiton/io/xpp3/Identity.java =================================================================== --- trunk/src/test/java/org/nuiton/io/xpp3/Identity.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/io/xpp3/Identity.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.io.xpp3; import java.beans.PropertyChangeListener; Modified: trunk/src/test/java/org/nuiton/io/xpp3/IdentityXpp3Reader.java =================================================================== --- trunk/src/test/java/org/nuiton/io/xpp3/IdentityXpp3Reader.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/io/xpp3/IdentityXpp3Reader.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.io.xpp3; import java.beans.IntrospectionException; Modified: trunk/src/test/java/org/nuiton/io/xpp3/Xpp3HelperTest.java =================================================================== --- trunk/src/test/java/org/nuiton/io/xpp3/Xpp3HelperTest.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/io/xpp3/Xpp3HelperTest.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.io.xpp3; import org.junit.Assert; Modified: trunk/src/test/java/org/nuiton/io/xpp3/Xpp3ReaderTest.java =================================================================== --- trunk/src/test/java/org/nuiton/io/xpp3/Xpp3ReaderTest.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/io/xpp3/Xpp3ReaderTest.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.io.xpp3; import org.junit.Assert; Modified: trunk/src/test/java/org/nuiton/plugin/AbstractMojoTest.java =================================================================== --- trunk/src/test/java/org/nuiton/plugin/AbstractMojoTest.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/plugin/AbstractMojoTest.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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 Modified: trunk/src/test/java/org/nuiton/plugin/PluginHelperTest.java =================================================================== --- trunk/src/test/java/org/nuiton/plugin/PluginHelperTest.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/plugin/PluginHelperTest.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,3 +1,23 @@ +/* + * *##% + * Maven helper plugin + * Copyright (C) 2009 - 2010 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>. + * ##%* + */ package org.nuiton.plugin; import org.junit.Assert; Modified: trunk/src/test/java/org/nuiton/plugin/TestHelper.java =================================================================== --- trunk/src/test/java/org/nuiton/plugin/TestHelper.java 2010-04-09 19:07:07 UTC (rev 687) +++ trunk/src/test/java/org/nuiton/plugin/TestHelper.java 2010-04-09 19:10:49 UTC (rev 688) @@ -1,7 +1,7 @@ /* * *##% * Maven helper plugin - * Copyright (C) 2009 CodeLutin + * Copyright (C) 2009 - 2010 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