Category: plugins

News and posts from plugins category

scm-script-plugin

Posted on 2013-01-01 by Sebastian Sdorra


Script support for scm-manager with the scm-script-plugin

Screenshots: scm script plugin s02 scm script plugin s01


Posted in plugins, workflow-plugins


scm-notify-plugin 1.1

Posted on 2012-12-22 by Sebastian Sdorra


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

Changes:


Posted in plugins, workflow-plugins


scm-statistic-plugin

Posted on 2012-12-22 by Sebastian Sdorra


Build statistics for every repository in SCM-Manager with the new scm-statistic-plugin.

Screenshots: screenshot 01 screenshot 02 screenshot 03 screenshot 04 screenshot 05 screenshot 06


Posted in plugins, information-plugins


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