Author: vmassol
Date: 2007-11-16 16:48:06 +0100 (Fri, 16 Nov 2007)
New Revision: 5947

Modified:
   xwiki-platform/xwiki-plugins/trunk/mailsender/pom.xml
   
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/Mail.java
   
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/MailSenderPluginApi.java
   
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/MimeTypesUtil.java
Log:
Prepare for Mail Sender plugin v1.0 release.

Added missing license headers.


Modified: xwiki-platform/xwiki-plugins/trunk/mailsender/pom.xml
===================================================================
--- xwiki-platform/xwiki-plugins/trunk/mailsender/pom.xml       2007-11-16 
15:43:54 UTC (rev 5946)
+++ xwiki-platform/xwiki-plugins/trunk/mailsender/pom.xml       2007-11-16 
15:48:06 UTC (rev 5947)
@@ -28,7 +28,7 @@
   <parent>
     <artifactId>xwiki-plugins</artifactId>
     <groupId>com.xpn.xwiki.platform.plugins</groupId>
-    <version>3-SNAPSHOT</version>
+    <version>2</version>
   </parent>
   <artifactId>xwiki-plugin-mailsender</artifactId>
   <name>XWiki Platform - Plugins - Mail Sender</name>
@@ -38,7 +38,7 @@
     <dependency>
       <groupId>com.xpn.xwiki.platform</groupId>
       <artifactId>xwiki-core</artifactId>
-      <version>1.2-SNAPSHOT</version>
+      <version>1.2-milestone-2</version>
     </dependency>
   </dependencies>
 </project>
\ No newline at end of file

Modified: 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/Mail.java
===================================================================
--- 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/Mail.java
       2007-11-16 15:43:54 UTC (rev 5946)
+++ 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/Mail.java
       2007-11-16 15:48:06 UTC (rev 5947)
@@ -1,8 +1,26 @@
+/*
+ * See the NOTICE file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * This 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 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package com.xpn.xwiki.plugin.mailsender;
+
 import java.util.List;
 
-import com.xpn.xwiki.api.Attachment;
-
 /**
  * The variables to, cc, bcc can contain several email addresses, separated by 
commas.
  */

Modified: 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/MailSenderPluginApi.java
===================================================================
--- 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/MailSenderPluginApi.java
        2007-11-16 15:43:54 UTC (rev 5946)
+++ 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/MailSenderPluginApi.java
        2007-11-16 15:48:06 UTC (rev 5947)
@@ -20,7 +20,6 @@
 package com.xpn.xwiki.plugin.mailsender;
 
 import com.xpn.xwiki.XWikiContext;
-import com.xpn.xwiki.api.Context;
 import com.xpn.xwiki.plugin.PluginApi;
 import org.apache.velocity.VelocityContext;
 

Modified: 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/MimeTypesUtil.java
===================================================================
--- 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/MimeTypesUtil.java
      2007-11-16 15:43:54 UTC (rev 5946)
+++ 
xwiki-platform/xwiki-plugins/trunk/mailsender/src/main/java/com/xpn/xwiki/plugin/mailsender/MimeTypesUtil.java
      2007-11-16 15:48:06 UTC (rev 5947)
@@ -1,3 +1,22 @@
+/*
+ * See the NOTICE file distributed with this work for additional
+ * information regarding copyright ownership.
+ *
+ * This 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 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package com.xpn.xwiki.plugin.mailsender;
 
 public class MimeTypesUtil
@@ -2,3 +21,2 @@
 {
-
     protected static final String[][] MIME_TYPES =

_______________________________________________
notifications mailing list
[email protected]
http://lists.xwiki.org/mailman/listinfo/notifications

Reply via email to