[ 
https://issues.jenkins-ci.org/browse/JENKINS-12940?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=159683#comment-159683
 ] 

Richard Mortimer commented on JENKINS-12940:
--------------------------------------------

This isn't really the place to ask questions. Its best to ask thinks like this 
on the mailing lists or in #jenkins on IRC.

However you have mixed cases in your package names. Windows lets you get away 
with this because filenames are not case sensitive. On linux they are so your 
mistake causes the error.

{code}
Caused by: java.lang.NoClassDefFoundError: 
Lcom/jsimomaa/jenkins/plugin/RetryBuild/RetryBuildListener;
{code}

That has "RetryBuild" in capitals but the source uses lower case in the folder 
name.

A quick look at the source and I suspect that you need to replace
{code}
package com.jsimomaa.jenkins.plugin.RetryBuild;
{code}

with

{code}
package com.jsimomaa.jenkins.plugin.retrybuild;
{code}
                
> Jenkins Configure Job -view gets stuck with LOADING
> ---------------------------------------------------
>
>                 Key: JENKINS-12940
>                 URL: https://issues.jenkins-ci.org/browse/JENKINS-12940
>             Project: Jenkins
>          Issue Type: Bug
>          Components: plugin
>         Environment: OS Name:                   Microsoft® Windows VistaT 
> Home Premium
> OS Version:                6.0.6002 Service Pack 2 Build 6002
> OS Manufacturer:           Microsoft Corporation
> OS Configuration:          Standalone Workstation
> OS Build Type:             Multiprocessor Free
> System Type:               X86-based PC
> Processor(s):              1 Processor(s) Installed.
>                            [01]: x64 Family 16 Model 2 Stepping 3 
> AuthenticAMD ~1200 Mhz
> BIOS Version:              American Megatrends Inc. 0906   , 25.12.2008
>            Reporter: Jani Simomaa
>            Priority: Blocker
>              Labels: jenkins, plugin
>         Attachments: RetryBuild_source.zip
>
>
> Hey!
> Jenkins version on both machines are latest 1.452
> I'm having an issue with my own created plugin. It works fine if it is used 
> locally on my Windows master but when I try to upload this plugin to Ubuntu 
> master Jenkins the plugin and the Jenkins configure Job -view stuck with 
> LOADING text and gray background. I also get a huge stack trace into Jenkins 
> log but I'm not able to figure it out why it doesn't work.
> Stack trace here: http://pastebin.com/T5JwJErq
> I'll attach the source of my plugin.
> Thanks!

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira


Reply via email to