Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-4159

Sametime notification plugin doesn't work with Maven projects

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Major Major
    • sametime-plugin
    • None
    • Platform: All, OS: All

      When you configure a job as a Maven project, the Sametime notification plugin doesn't send IM message to configurated targets nicknames.

          [JENKINS-4159] Sametime notification plugin doesn't work with Maven projects

          acdesouza added a comment -

          IMPublisher#perform is using hudson.model.Build, instead of hudson.model. AbstractBuild.

          So Maven Project's doesn't fit method signature.

          acdesouza added a comment - IMPublisher#perform is using hudson.model.Build, instead of hudson.model. AbstractBuild. So Maven Project's doesn't fit method signature.

          Code changed in hudson
          User: : acdesouza
          Path:
          trunk/hudson/plugins/sametime/pom.xml
          trunk/hudson/plugins/sametime/src/main/java/hudson/plugins/sametime/NotificationStrategy.java
          trunk/hudson/plugins/sametime/src/main/java/hudson/plugins/sametime/im/IMPublisher.java
          http://fisheye4.cenqua.com/changelog/hudson/?cs=20446
          Log:
          [FIXED JENKINS-4159] Change method signature from :
          public boolean perform(final Build<?,?> build, final Launcher launcher, final BuildListener buildListener)
          to:
          public boolean perform(final AbstractBuild<?,?> build, final Launcher launcher, final BuildListener buildListener)

          SCM/JIRA link daemon added a comment - Code changed in hudson User: : acdesouza Path: trunk/hudson/plugins/sametime/pom.xml trunk/hudson/plugins/sametime/src/main/java/hudson/plugins/sametime/NotificationStrategy.java trunk/hudson/plugins/sametime/src/main/java/hudson/plugins/sametime/im/IMPublisher.java http://fisheye4.cenqua.com/changelog/hudson/?cs=20446 Log: [FIXED JENKINS-4159] Change method signature from : public boolean perform(final Build<?,?> build, final Launcher launcher, final BuildListener buildListener) to: public boolean perform(final AbstractBuild<?,?> build, final Launcher launcher, final BuildListener buildListener)

          mdsteele added a comment -

          Has this change been uploaded to the plugin repository? Or do I need to checkout
          the trunk and build it myself?

          mdsteele added a comment - Has this change been uploaded to the plugin repository? Or do I need to checkout the trunk and build it myself?

            acdesouza acdesouza
            acdesouza acdesouza
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: