Subversion plug-in:

2014-08-05 Thread Fabio Farronato

Hi all,
  I'm in trouble with the Subversion plug-in, here the scenario:

My job have a parameter SOURCE to pass svn location in format 
http://svnserv/repo/myproject/branches/7.20.0@506192;.

In job configuration I defined the SCM location using a variable $SOURCE.
The first time the job ran out compiling successfully.
Because the build was a test, the branch has been removed and is no 
longer available in the latest revision.
Now if i try to require a build with the same parameter the job fail to 
check out:


Location 'http://svnserv/repo/myproject/branches/7.20.0@506192' does not exist
Cleaning local Directory .
Checking out http://svnserv/repo/myproject/branches/7.20.0@506192 at revision 
506192
ERROR: Failed to check out http://svnserv/repo/myproject/branches/7.20.0@506192
org.tmatesoft.svn.core.SVNException  
http://stacktrace.jenkins-ci.org/search?query=org.tmatesoft.svn.core.SVNException:
 svn: E160013: '/repo/!svn/bc/521195/myproject/branches/7.20.0' path not found: 404 
Not Found (http://svnserv)

atorg.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:64)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc.SVNErrorManager.errorentity=method

atorg.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:51)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc.SVNErrorManager.errorentity=method

atorg.tmatesoft.svn.core.internal.io.dav.DAVRepository.getLocationsImpl(DAVRepository.java:1068)
  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.io.dav.DAVRepository.getLocationsImplentity=method
atorg.tmatesoft.svn.core.io.SVNRepository.getLocations(SVNRepository.java:1088)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.io.SVNRepository.getLocationsentity=method
atorg.tmatesoft.svn.core.io.SVNRepository.getLocations(SVNRepository.java:1516)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.io.SVNRepository.getLocationsentity=method

atorg.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess.getLocations(SvnRepositoryAccess.java:178)
  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.SvnRepositoryAccess.getLocationsentity=method

atorg.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess.createRepositoryFor(SvnNgRepositoryAccess.java:45)
  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgRepositoryAccess.createRepositoryForentity=method

atorg.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.checkout(SvnNgAbstractUpdate.java:706)
  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.checkoutentity=method
atorg.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout.run(SvnNgCheckout.java:14) 
 
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout.runentity=method
atorg.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout.run(SvnNgCheckout.java:9)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgCheckout.runentity=method

atorg.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner.run(SvnNgOperationRunner.java:20)
  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner.runentity=method

atorg.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.run(SvnOperationRunner.java:20)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.runentity=method

atorg.tmatesoft.svn.core.wc2.SvnOperationFactory.run(SvnOperationFactory.java:1238)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.wc2.SvnOperationFactory.runentity=method
atorg.tmatesoft.svn.core.wc2.SvnOperation.run(SvnOperation.java:294)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.wc2.SvnOperation.runentity=method
atorg.tmatesoft.svn.core.wc.SVNUpdateClient.doCheckout(SVNUpdateClient.java:777)  
http://stacktrace.jenkins-ci.org/search/?query=org.tmatesoft.svn.core.wc.SVNUpdateClient.doCheckoutentity=method
athudson.scm.subversion.CheckoutUpdater$1.perform(CheckoutUpdater.java:99)  
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.subversion.CheckoutUpdater$1.performentity=method

athudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:161) 
 
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateToentity=method
athudson.scm.SubversionSCM$CheckOutTask.perform(SubversionSCM.java:1006)  
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.SubversionSCM$CheckOutTask.performentity=method
athudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:987)  

Understanding extension point for plugin

2014-02-21 Thread Fabio Farronato

Hi all,
I'm newbe on jenkins and in writing plugins. I have some trouble in 
understanding extension point.


I have looked for in the wiki for an explanation of a job's workflow 
execution  without success.


I have the need of notify to an external tool, calling an api, when a 
job start. I'm in trouble on choosing the extension point.


Can anyone tell me where to look? or suggest me the extension point?

Thanks in advance.


--
Untitled Document Fabio Farronato


--
You received this message because you are subscribed to the Google Groups Jenkins 
Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
attachment: fabio_farronato.vcf

Re: Hosting Polarion ALM Plugin

2014-02-11 Thread Fabio Farronato
Hi all,
there are some news about hosting the plugin on jenkinsci repo?
Thanks
Fabio


Il giorno giovedì 12 aprile 2012 15:45:58 UTC+2, Hermann Lacheiner ha 
scritto:

 Hi all, 

 I have implemented a plugin for integrating Polarion ALM with Jenkins 
 so that commits in the changelog are linked with the work item in 
 Polarion and when the build failed a work item (e.g. defect) is 
 created. 
 As there were some requests for this plugin I would like to share this 
 plugin and provide the source under the MIT license. Is it possible to 
 host this plugin under https://github.com/jenkinsci? My GitHub ID is 
 fidohl. 


 Best regards, 

 Hermann Lacheiner

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.