Category: plugins

News and posts from plugins category

scm-mail-plugin

Posted on 2012-12-20 by Sebastian Sdorra


The scm-mail-plugin provides an central api for sending e-mails. This plugin is primarily for use by other plugins.

Wiki: https://bitbucket.org/sdorra/scm-manager/wiki/mail-plugin 

Example:

/**
 *
 * @author Sebastian Sdorra
 */
public class NotificationService
{
  private static final Logger logger = LoggerFactory.getLogger(
    NotificationService.class);
  
  private MailService mailService;

  @Inject
  public NotificationService(MailService mailService)
  {
    this.mailService = mailService;
  }
  
  public void sendNotification() throws MailSendBatchException {
    if ( mailService.isConfigured() ){
      Email mail = new Email();
      mail.setFromAddress("SCM-Administrator", "admin@scm-manager.org");
      mail.addRecipient("Test User", "test.user@scm-manager.org", RecipientType.TO);
      mail.setSubject("SCM-Manager notification");
      mail.setText("Notification from SCM-Manager");
      
      mailService.send(mail);
    } else {
      logger.warn("mail service is not configured");
    }
  }
}

Posted in plugins, library-plugins


scm-activity-plugin 1.8

Posted on 2012-11-20 by Sebastian Sdorra


New version of the scm-activity-plugin is available.

Changes:

  • show changesets from git non master branches, see issue 279

Posted in plugins, information-plugins


scm-auth-ldap-plugin 1.18

Posted on 2012-11-10 by Sebastian Sdorra


Version 1.18 of the scm-ldap-plugin is available.

Changes:

  • option to configure ldap referral strategy (follow, ignore or throw)

Posted in plugins, authentication-plugins


scm-jira-plugin 1.7

Posted on 2012-10-29 by Sebastian Sdorra


Version 1.7 of the scm-jira-plugin is available.

Changes:

  • added option for explicit jira credentials, see issue 272

Posted in plugins, issue-tracker-plugins


scm-branchwp-plugin 1.1

Posted on 2012-10-29 by Sebastian Sdorra


Version 1.1 of the scm-branchwp-plugin is released.

Changes:

  • allow glob syntax for branch names, see issue 271

Posted in plugins, authorization-plugins


scm-jira-plugin 1.6

Posted on 2012-10-18 by Sebastian Sdorra


Version 1.6 of the scm-jira-plugin is available.

Changes:

  • Execute jira hooks asynchronous
  • Avoid duplicate jira comments

Note:

  • Version 1.6 requires SCM-Manager version 1.21 or newer

Posted in plugins, issue-tracker-plugins


scm-auth-ldap-plugin 1.17

Posted on 2012-10-17 by Sebastian Sdorra


Version 1.17 of the scm-ldap-plugin is available.

Changes:

  • follow ldap referrals
  • log the user object, if the returned user is not valid

Posted in plugins, authentication-plugins


scm-jira-plugin 1.4

Posted on 2012-10-09 by Sebastian Sdorra


Version 1.4 of the scm-jira-plugin is available.

Changes:

  • Detect issue keys automatically
  • Uses SCM-Manager default template engine to render issue comments
  • Allow global configuration and per-repository configuration

Note:

  • Option to transform usernames was removed
  • Option for project keys was removed
  • Version 1.4 requires SCM-Manager version 1.19 or newer

Posted in plugins, issue-tracker-plugins


scm-gravatar-plugin 1.4

Posted on 2012-08-26 by Sebastian Sdorra


New version of the scm-gravatar-plugin is available.

Changes:

  • add big avatar to commit page

Screenshot scm-gravatar-plugin 1.4


Posted in plugins, information-plugins


scm-branchwp-plugin 1.0

Posted on 2012-08-26 by Sebastian Sdorra


The scm-branchwp-plugin adds branch write protection for repositories to SCM-Manager.

Wiki: https://bitbucket.org/sdorra/scm-manager/wiki/branchwp-plugin 


Posted in plugins, authorization-plugins