Re: Jenkins

2015-06-26 Thread Murthy Gandikota
Thank you, Chris. After I removed the defective files, the build log on the 
console looks near perfect.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c011a849-751a-4063-b947-92a5cdcdb55b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins

2015-06-24 Thread Murthy Gandikota


Hi All:


Using Jenkins 1.596


See this in the Console output:


ERROR: Asynchronous execution failure 

java.util.concurrent.ExecutionException 
:
 
java.lang.ClassCastException: java.lang.String cannot be cast to 
hudson.model.Fingerprint
...
Caused by: java.lang.ClassCastException: java.lang.String cannot be cast to 
hudson.model.Fingerprint
...

Is there an easy fix for this?

Regards
murthy

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/dc5de7ff-817f-40de-826c-30ad461fbbb1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins converts the scope of dependency as "compile" and fails to include the dependencies in the war

2015-04-08 Thread Murthy Gandikota


On Wednesday, April 8, 2015 at 11:33:32 AM UTC-7, Murthy Gandikota wrote:
>
>
>
> On Tuesday, April 7, 2015 at 3:40:52 PM UTC-7, Murthy Gandikota wrote:
>>
>> Using Jenkins 1.596. 
>>
>> While creating a war, all the necessary jars are flagged with the scope 
>> "compile", like this:
>>
>> [pool-1-thread-1 for channel] INFO 
>> org.apache.maven.plugin.dependency.TreeMojo - +- 
>> org.javassist:javassist:jar:3.18.1-GA:compile
>> [pool-1-thread-1 for channel] INFO 
>> org.apache.maven.plugin.dependency.TreeMojo - +- 
>> org.antlr:antlr:jar:3.5:compile
>> [pool-1-thread-1 for channel] INFO 
>> org.apache.maven.plugin.dependency.TreeMojo - |  +- 
>> org.antlr:antlr-runtime:jar:3.5:compile
>> [pool-1-thread-1 for channel] INFO 
>> org.apache.maven.plugin.dependency.TreeMojo - |  |  \- 
>> org.antlr:stringtemplate:jar:3.2.1:compile
>> [pool-1-thread-1 for channel] INFO 
>> org.apache.maven.plugin.dependency.TreeMojo - |  | \- 
>> antlr:antlr:jar:2.7.7:compile
>>
>>
>> The pom.xml dependency tags don't mention the scope anywhere.
>>
>> As a result, I think, the jars are not included in the packaged war. This 
>> is seen only with incremental build.
>>
>> If scope needs to be specified in each dependency, what value should it 
>> be set?
>>
>> I'd appreciate your help
>>
>
> It seems compile scope is the default.
>
>
> http://stackoverflow.com/questions/1396901/maven-dependency-within-dependency-with-different-scope
>
>  Can someone kindly tell me why the jars are not included in the packaged 
> war? My apologies if this is a maven question.
>

When maven is run from the command  line, all of the jars are included in 
the war. When Jenkins does incremental build, the jars are missing. This 
tells me, the issue is with Jenkins, not maven. 
Here are the goals to maven:

clean dependency:tree install -P component clover2:setup test 
clover2:aggregate clover2:clover

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/164dd9eb-d7b9-4e44-983b-e13154c113ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins converts the scope of dependency as "compile" and fails to include the dependencies in the war

2015-04-08 Thread Murthy Gandikota


On Tuesday, April 7, 2015 at 3:40:52 PM UTC-7, Murthy Gandikota wrote:
>
> Using Jenkins 1.596. 
>
> While creating a war, all the necessary jars are flagged with the scope 
> "compile", like this:
>
> [pool-1-thread-1 for channel] INFO 
> org.apache.maven.plugin.dependency.TreeMojo - +- 
> org.javassist:javassist:jar:3.18.1-GA:compile
> [pool-1-thread-1 for channel] INFO 
> org.apache.maven.plugin.dependency.TreeMojo - +- 
> org.antlr:antlr:jar:3.5:compile
> [pool-1-thread-1 for channel] INFO 
> org.apache.maven.plugin.dependency.TreeMojo - |  +- 
> org.antlr:antlr-runtime:jar:3.5:compile
> [pool-1-thread-1 for channel] INFO 
> org.apache.maven.plugin.dependency.TreeMojo - |  |  \- 
> org.antlr:stringtemplate:jar:3.2.1:compile
> [pool-1-thread-1 for channel] INFO 
> org.apache.maven.plugin.dependency.TreeMojo - |  | \- 
> antlr:antlr:jar:2.7.7:compile
>
>
> The pom.xml dependency tags don't mention the scope anywhere.
>
> As a result, I think, the jars are not included in the packaged war. This 
> is seen only with incremental build.
>
> If scope needs to be specified in each dependency, what value should it be 
> set?
>
> I'd appreciate your help
>

It seems compile scope is the default.

http://stackoverflow.com/questions/1396901/maven-dependency-within-dependency-with-different-scope

 Can someone kindly tell me why the jars are not included in the packaged 
war? My apologies if this is a maven question.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/1a83a047-0db5-41e1-a41c-4e3efe960135%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins converts the scope of dependency as "compile" and fails to include the dependencies in the war

2015-04-07 Thread Murthy Gandikota
Using Jenkins 1.596. 

While creating a war, all the necessary jars are flagged with the scope 
"compile", like this:

[pool-1-thread-1 for channel] INFO org.apache.maven.plugin.dependency.TreeMojo 
- +- org.javassist:javassist:jar:3.18.1-GA:compile
[pool-1-thread-1 for channel] INFO org.apache.maven.plugin.dependency.TreeMojo 
- +- org.antlr:antlr:jar:3.5:compile
[pool-1-thread-1 for channel] INFO org.apache.maven.plugin.dependency.TreeMojo 
- |  +- org.antlr:antlr-runtime:jar:3.5:compile
[pool-1-thread-1 for channel] INFO org.apache.maven.plugin.dependency.TreeMojo 
- |  |  \- org.antlr:stringtemplate:jar:3.2.1:compile
[pool-1-thread-1 for channel] INFO org.apache.maven.plugin.dependency.TreeMojo 
- |  | \- antlr:antlr:jar:2.7.7:compile


The pom.xml dependency tags don't mention the scope anywhere.

As a result, I think, the jars are not included in the packaged war. This 
is seen only with incremental build.

If scope needs to be specified in each dependency, what value should it be 
set?

I'd appreciate your help

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/5b93919d-fb19-4649-8997-7c01c9746fe8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 1.596 script won't run with security configured

2015-04-02 Thread Murthy Gandikota


On Thursday, April 2, 2015 at 2:41:18 PM UTC-7, Richard Bywater wrote:
>
> There doesn't need to be a root user in Jenkins - just make sure the 
> username and token you pass through in the script are valid to perform the 
> functions you require on the Jenkins server.
>
> I think the examples given in the URL should be enough to show what 
> parameters need to be passed in the HTTP request with your 
> language/HTTP-client of choice?
>
> Richard
>
> On 10:34AM, Fri, 3/04/2015 Murthy Gandikota  > wrote:
>
>>
>>
>> On Thursday, April 2, 2015 at 11:07:17 AM UTC-7, Eric Pyle wrote:
>>>
>>>  See Authenticating Scripted Clients 
>>> <https://wiki.jenkins-ci.org/display/JENKINS/Authenticating+scripted+clients>
>>>  
>>> page on the wiki.
>>>
>>> On 4/2/2015 12:22 PM, Murthy Gandikota wrote:
>>>  
>>>  Hi All
>>>
>>>  I am trying to run a shell script in a project as root. Without 
>>> security enabled it runs fine.
>>> With security using Jenkins database -- no fancy LDAP or 
>>> anything--- enabled, the script fails thus:
>>>
>>>  $ /bin/sh -xe /tmp/hudson8715135757129650687.sh
>>> + echo root
>>> root
>>> + chmod a+x ./myscript.sh
>>> + ./myscript.sh
>>>
>>>
>> Hi Eric
>> The script is run as root. There is no root user in Jenkins. Should I 
>> create one?
>> Otherwise, could you tell me whose API token needs to be used?
>> Also, the URL you gave covers wget besides perl, java, etc. but not shell 
>> scripting (bash). 
>> We have a master-slave set up.
>>
>> Thank you
>>
>>
>>> --2015-04-01 23:35:54--  
>>> *http://ci.westechdev.org:8080/job//backup-jenkins-jobs/config.xml* 
>>> <http://ci.westechdev.org:8080/job//backup-jenkins-jobs/config.xml>
>>> Resolving ci.mycom.org... 192.168.100.1
>>> Connecting to ci.westechdev.org|192.168.100.1|:8080... connected.
>>> HTTP request sent, awaiting response... 403 Forbidden
>>> 2015-04-01 23:35:54 ERROR 403: Forbidden.
>>>
>>>  Can anyone help?
>>>
>>>  Thanks
>>> murthy
>>>  -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Jenkins Users" group.
>>>
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to jenkinsci-use...@googlegroups.com.
>>>
>>>
>>> To view this discussion on the web visit https://groups.google.com/d/
>>> msgid/jenkinsci-users/77fc4aec-b6ab-4828-9a83-
>>> 01def2d05263%40googlegroups.com 
>>> <https://groups.google.com/d/msgid/jenkinsci-users/77fc4aec-b6ab-4828-9a83-01def2d05263%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>  -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/6494dd27-adcc-41f0-88df-6c4f8d0f5297%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/jenkinsci-users/6494dd27-adcc-41f0-88df-6c4f8d0f5297%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.'
>>
>
Hi Richard

Many thanks for your clarification. I still have one more question. The 
wget example given at the Jenkins web site is:

wget --auth-no-challenge --http-user=user --http-password=apiToken 
--secure-protocol=TLSv1 http: 
<http://jenkins.yourcompany.com/job/your_job/build?token=TOKEN> 
<http://jenkins.yourcompany.com/job/your_job/build?token=TOKEN>
//jenkins.yourcompany.com/job/your_job/build?token=TOKEN 
<http://jenkins.yourcompany.com/job/your_job/build?token=TOKEN>

Should we pass token=Token with every wget url?
For example we will have something like this:

wget --auth-no-challenge --http-user=someuser --http-password=APITOKEN 
--user-agent=agent --retry-connrefused --tries=0 -O refresh.xml 
http://jenkins.mycom.com/job/refresh/config.xml

Should this be changed to:

wget --auth-no-challenge --http-user=someuser --http-password=APITOKEN 
--user-agent=agent --retry-connrefused --tries=0 -O refresh.xml 
http://jenkins.mycom.com/job/refresh/config.xml?token=TOKEN

I appreciate your kind help.

Thanks
 

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/81695f8b-2f9b-453c-b249-910b7ed5bc33%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 1.596 script won't run with security configured

2015-04-02 Thread Murthy Gandikota


On Thursday, April 2, 2015 at 11:07:17 AM UTC-7, Eric Pyle wrote:
>
>  See Authenticating Scripted Clients 
> <https://wiki.jenkins-ci.org/display/JENKINS/Authenticating+scripted+clients> 
> page on the wiki.
>
> On 4/2/2015 12:22 PM, Murthy Gandikota wrote:
>  
>  Hi All
>
>  I am trying to run a shell script in a project as root. Without security 
> enabled it runs fine.
> With security using Jenkins database -- no fancy LDAP or 
> anything--- enabled, the script fails thus:
>
>  $ /bin/sh -xe /tmp/hudson8715135757129650687.sh
> + echo root
> root
> + chmod a+x ./myscript.sh
> + ./myscript.sh
>
>
Hi Eric
The script is run as root. There is no root user in Jenkins. Should I 
create one?
Otherwise, could you tell me whose API token needs to be used?
Also, the URL you gave covers wget besides perl, java, etc. but not shell 
scripting (bash). 
We have a master-slave set up.

Thank you
   

> --2015-04-01 23:35:54--  
> *http://ci.westechdev.org:8080/job//backup-jenkins-jobs/config.xml* 
> <http://ci.westechdev.org:8080/job//backup-jenkins-jobs/config.xml>
> Resolving ci.mycom.org... 192.168.100.1
> Connecting to ci.westechdev.org|192.168.100.1|:8080... connected.
> HTTP request sent, awaiting response... 403 Forbidden
> 2015-04-01 23:35:54 ERROR 403: Forbidden.
>
>  Can anyone help?
>
>  Thanks
> murthy
>  -- 
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-use...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/77fc4aec-b6ab-4828-9a83-01def2d05263%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/jenkinsci-users/77fc4aec-b6ab-4828-9a83-01def2d05263%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6494dd27-adcc-41f0-88df-6c4f8d0f5297%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins 1.596 script won't run with security configured

2015-04-02 Thread Murthy Gandikota
Hi All

I am trying to run a shell script in a project as root. Without security 
enabled it runs fine.
With security using Jenkins database -- no fancy LDAP or 
anything--- enabled, the script fails thus:

$ /bin/sh -xe /tmp/hudson8715135757129650687.sh
+ echo root
root
+ chmod a+x ./myscript.sh
+ ./myscript.sh
--2015-04-01 23:35:54--  
*http://ci.westechdev.org:8080/job//backup-jenkins-jobs/config.xml* 

Resolving ci.mycom.org... 192.168.100.1
Connecting to ci.westechdev.org|192.168.100.1|:8080... connected.
HTTP request sent, awaiting response... 403 Forbidden
2015-04-01 23:35:54 ERROR 403: Forbidden.

Can anyone help?

Thanks
murthy

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/77fc4aec-b6ab-4828-9a83-01def2d05263%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Email-Ext plugin] don't see triggers

2015-04-01 Thread Murthy Gandikota
Mr.Walker, one of the developers of Email-Ext has kindly responded to my 
issue. I am posting his response with his permission so that others in a  
similar situation can benefit.

Under "Post-build Actions" there is a flat button with the text "Add 
post-build action" on it. When you click that, what are all the available 
options? I have a long list of them, including "Editable Email 
Notification". If you then click "Editable Email Notification", then 
"Editable Email Notification" will appear under "Post-build Actions."

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/75dfef17-f6ae-4b7a-babd-407913f9bffa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Murthy Gandikota


Found this script in the plugins folder. The entire script is not loaded. 
Tried different browsers. Same result.:(
function hideElement(elmID)
{
 var elm = document.getElementById(elmID);
 elm.style.display = "none";
}

function showElement(elmID)
{
 var elm = document.getElementById(elmID);
 elm.style.display = "";
}

function swapEdit(swapName)
{
 var editID = swapName+"edit";
 var hideID = swapName+"hide";
 var elmID = swapName+"elm";
 var elm = document.getElementById(elmID);
 
 
 if(elm.style.display == "none")
 {
  showElement(hideID);
  showElement(elmID);
  hideElement(editID);
 }
 else
 {
  hideElement(hideID);
  hideElement(elmID);
  showElement(editID);
 }
}

function switchElementContainer(oldParent,newParent,child)
{
 if(!child)
  return;
 oldParent.removeChild(child);
 newParent.appendChild(child);
}

function selectTrigger(selectElement,secId)
{
 var selInd = selectElement.selectedIndex;
 
 if(selInd == 0)
  return;
 
 var triggerOption = selectElement.options[selInd];
 var mailerId = triggerOption.value;
 
 selectElement.selectedIndex = 0;

 addTrigger(mailerId,secId);
}

function addTrigger(mailerId,secId)
{
 var configId = secId+"mailer."+mailerId+".configured";
 mailerId = secId + mailerId;
 var nonConfigTriggers = 
document.getElementById(secId+"non-configured-email-triggers");
 var triggerRow = document.getElementById(mailerId);
 var configTriggers = 
document.getElementById(secId+"configured-email-triggers");
 var afterThisElement = 
document.getElementById(secId+"after-last-configured-row");
 
 if(!triggerRow || !document.getElementById(configId))
  return;
 
 nonConfigTriggers.removeChild(triggerRow);
 configTriggers.insertBefore(triggerRow,afterThisElement);
 triggerRow.style.display="";
 
 var triggerHelp = document.getElementById(mailerId+"help");
 nonConfigTriggers.removeChild(triggerHelp);
 configTriggers.insertBefore(triggerHelp,afterThisElement);
 
 var triggerAdv = document.getElementById(mailerId+"elm");
 nonConfigTriggers.removeChild(triggerAdv);
 configTriggers.insertBefore(triggerAdv,afterThisElement);
 
 var nonConfigOptions = 
document.getElementById(secId+"non-configured-options");
 var configOptions = document.getElementById(secId+"configured-options");
 var option = document.getElementById(mailerId + "option");
 switchElementContainer(nonConfigOptions,configOptions,option);
 
 document.getElementById(configId).value = "true";
}

function removeTrigger(mailerId,secId)
{
 document.getElementById(secId+"mailer."+mailerId+".configured").value = 
"false";
 mailerId = secId + mailerId;

 var nonConfigTriggers = 
document.getElementById(secId+"non-configured-email-triggers");
 var triggerRow = document.getElementById(mailerId);
 var configTriggers = 
document.getElementById(secId+"configured-email-triggers"); 
 switchElementContainer(configTriggers,nonConfigTriggers,triggerRow);

 var triggerHelp = document.getElementById(mailerId+"help");
 switchElementContainer(configTriggers,nonConfigTriggers,triggerHelp);

 var triggerAdv = document.getElementById(mailerId+"elm");
 switchElementContainer(configTriggers,nonConfigTriggers,triggerAdv);

 var nonConfigOptions = 
document.getElementById(secId+"non-configured-options");
 var configOptions = document.getElementById(secId+"configured-options");
 var option = document.getElementById(mailerId + "option");
 configOptions.removeChild(option);

 // Reinsert in alphabetical order (skipping the generic 'select' option at 
the top).
 var before = null;
 for (var i = 1; i < nonConfigOptions.options.length; i++) {
  var curOption = nonConfigOptions.options[i];
  if (curOption.id && curOption.value > option.value) {
   before = nonConfigOptions.options[i];
   break;
  }
 }
 nonConfigOptions.insertBefore(option, before);
 
 if(triggerAdv.style.display != "none")
  swapEdit(mailerId);
 
 if(triggerHelp.style.display != "none")
  triggerHelp.style.display="none";
  
 nonConfigOptions.selectedIndex = 0;
}

function toggleMailHelp(mailerId)
{
 var mailHelpRow = document.getElementById(mailerId+"help");
 mailHelpRow.style.display = (mailHelpRow.style.display=="none") ? "" : 
"none";
}

function toggleContentTokenHelp(secId)
{
 var mailHelp = document.getElementById(secId+"contentTokenHelpConf");
 mailHelp.style.display = (mailHelp.style.display=="none") ? "block" : 
"none";
}

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/f2631050-0df5-401a-98c7-07b10eb5d570%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Murthy Gandikota
Our set up is slightly different. There is no /log/all. I could find logs
under c:\program files\jenkins. Specifically jenkins.x.err.log. There are
no hits in the logs for "Ext"

Thanks

On Tue, Mar 31, 2015 at 1:50 PM, Daniel Beck  wrote:

> Check the Jenkins log at the /log/all URL for messages indicating failure
> to load the extended email publisher.
>
> On 31.03.2015, at 22:22, Murthy Gandikota  wrote:
>
> > I see "Extended E-mail Notification" in the Jenkins' configuration but
> there is no trigger in that section. Project configurations are supposed to
> have "Editable Email Notification" under "Post-build Actions". None I can
> see. The only relevant ones are:
> >
> > E-mail Notification
> > Recipients
> > [X] Send e-mail for every unstable build
> > [X] Send separate e-mails to individuals who broke the build
> > [X] Send e-mail for each failed moduleHelp for feature: E-mail
> Notification
> >
> > But aren't they part of Jenkins core?
> >
> > Thanks
> >
> > --
> > You received this message because you are subscribed to the Google
> Groups "Jenkins Users" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> an email to jenkinsci-users+unsubscr...@googlegroups.com.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/20af0a45-c5dd-4162-95bf-7c762785e0bb%40googlegroups.com
> .
> > For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/jenkinsci-users/tbKjne9NPHI/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/BA5E3316-C65C-4D28-A971-5A80B04522CF%40beckweb.net
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAMFxRJ%2Bms%3DMzR2J33ebQBAED-CCwL59sGumvHGWyHWiJ%3Dvy7ZA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Murthy Gandikota

>
> I see "Extended E-mail Notification" in the Jenkins' configuration but 
> there is no trigger in that section. Project configurations are supposed to 
> have "Editable Email Notification" under "Post-build Actions". None I can 
> see. The only relevant ones are:
>

E-mail Notification 
Recipients 
[X] Send e-mail for every unstable build 
[X] Send separate e-mails to individuals who broke the build 
[X] Send e-mail for each failed module Help for feature: E-mail Notification

But aren't they part of Jenkins core?

Thanks 

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/20af0a45-c5dd-4162-95bf-7c762785e0bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Email-Ext plugin] don't see triggers

2015-03-31 Thread Murthy Gandikota
Hi Daniel

Many thanks for your kind response. I use maven for builds. I see the
plugin installed.Yes, Jenkins was restarted.

Regards

On Tue, Mar 31, 2015 at 12:32 AM, Daniel Beck  wrote:

> What kind of project is this? Freestyle, Maven, ...?
>
> Did you restart Jenkins after installing?
>
> Is the plugin listed in plugin manager's Installed tab as enabled?
>
> On 31.03.2015, at 03:17, Murthy Gandikota  wrote:
>
> > Hi
> >
> > Using Jenkins 1.596
> >
> > Installed Email-Ext plugin
> >
> > The documentation says (
> https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin)
> >
> > For a project to use the email-ext plugin, you need to enable it in the
> project configuration page. Select the checkbox labeled "Editable Email
> Notification" in the "Post-build Actions" section.
> >
> > Don't see the "Editable Email Notification" or "Post-build Actions" in
> the project configuration page:
> >
> > Version mismatch
> >
> > Thanks for your help
> >
> > --
> > You received this message because you are subscribed to the Google
> Groups "Jenkins Users" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> an email to jenkinsci-users+unsubscr...@googlegroups.com.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/41c257c2-2a09-4a33-9d76-123ea675ca0d%40googlegroups.com
> .
> > For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/jenkinsci-users/tbKjne9NPHI/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/D0DBA4C5-29A1-47E3-9C8F-1B747CED46CD%40beckweb.net
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAMFxRJJ7MAekgoHSsM4DQ1P4yXuV5yk4ZyFRD7gdcSxzS3S%3DpQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[Email-Ext plugin] don't see triggers

2015-03-30 Thread Murthy Gandikota
Hi

Using Jenkins 1.596

Installed Email-Ext plugin

The documentation says (
https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin)

For a project to use the email-ext plugin, you need to enable it in the 
project configuration page. Select the checkbox labeled "Editable Email 
Notification" in the "Post-build Actions" section.

Don't see the "Editable Email Notification" or "Post-build Actions" in the 
project configuration page:
Version mismatch

Thanks for your help

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/41c257c2-2a09-4a33-9d76-123ea675ca0d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.