|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Kenny, Bret,
Did you do any modification to the pom files of the fork of jenkinsci-svnkit or to the svnPlugin?
In fact I'm using the svnkit code patched by Kenny:
https://github.com/theotherwhitemeat/svnkit-1
...and the SVNPlugin 1.46:
https://github.com/jenkinsci/subversion-plugin/tree/subversion-1.45
The first one was successfully built, but then I get tons of test errors while building the second one. Any idea?
I know I could simply use the build of Kenny (btw, thx!
) but I wanted to try to build it on my own.
Thanks for any help!
p.s. Kenny, I had the very same problem mentioned by you here:
http://jenkins.361315.n4.nabble.com/Compiling-SVNKit-for-subversion-plugin-td4663822.html
...and I ended up changing the exec task in the pom file of svnKit from this:
<exec command="./gradlew clean assemble" />
...to this:
<exec command="./gradlew clean build -x test -x signMaven"/>
Did you do the same? I then copied the jar file located in the gradle/build folder into my local maven repo, I hope this was not an incredible stupid idea...