scm-script-plugin
Posted on 2013-01-01 by Sebastian Sdorra
Script support for scm-manager with the scm-script-plugin
Screenshots:
Posted in plugins, workflow-plugins
Posted on 2013-01-01 by Sebastian Sdorra
Script support for scm-manager with the scm-script-plugin
Screenshots:
Posted in plugins, workflow-plugins
Posted on 2012-12-22 by Sebastian Sdorra
New version of the scm-notify-plugin is available.
Changes:
Posted in plugins, workflow-plugins
Posted on 2012-12-22 by Sebastian Sdorra
Build statistics for every repository in SCM-Manager with the new scm-statistic-plugin.
Screenshots:
Posted in plugins, information-plugins
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
Posted on 2012-12-16 by Sebastian Sdorra
Version 1.24 of SCM-Manager is now available for download.
Download: https://www.scm-manager.org/download/
Release notes: https://bitbucket.org/sdorra/scm-manager/wiki/release-notes
Getting started: https://bitbucket.org/sdorra/scm-manager/wiki/getting-started
Posted in release, scm-manager
Posted on 2012-12-15 by Sebastian Sdorra
Version 1.23 of SCM-Manager is now available for download.
Download: https://www.scm-manager.org/download/
Release notes: https://bitbucket.org/sdorra/scm-manager/wiki/release-notes
Getting started: https://bitbucket.org/sdorra/scm-manager/wiki/getting-started
Posted in release, scm-manager
Posted on 2012-11-20 by Sebastian Sdorra
New version of the scm-activity-plugin is available.
Changes:
Posted in plugins, information-plugins
Posted on 2012-11-10 by Sebastian Sdorra
Version 1.18 of the scm-ldap-plugin is available.
Changes:
Posted in plugins, authentication-plugins
Posted on 2012-10-29 by Sebastian Sdorra
Version 1.22 of SCM-Manager is now available for download.
Download: https://www.scm-manager.org/download/
Release notes: https://bitbucket.org/sdorra/scm-manager/wiki/release-notes
Getting started: https://bitbucket.org/sdorra/scm-manager/wiki/getting-started
Posted in release, scm-manager
Posted on 2012-10-29 by Sebastian Sdorra
Version 1.7 of the scm-jira-plugin is available.
Changes:
Posted in plugins, issue-tracker-plugins