Re: Compare boolean & numerical test results over builds in a table

2017-05-10 Thread JordanGS
Off the top of my head, i wouldn't even bother writing a new plugin or updating one. Write a script in any language to collect all the information from each individual build/test and then aggregate that into a JUnit XML file. Take a look at Tap plugin

Re: Jenkins 2.5.X HTTP404 error

2017-05-09 Thread JordanGS
I've run git bisect on the two releases. The bug was introduced during the following commit [ed329d1088c164df560b9299cd9096ae76519418] [FIXED JENKINS-42443] Make f: select display spinner during AJAX requests Commit can be found here

Re: Jenkins 2.5.X HTTP404 error

2017-05-09 Thread JordanGS
I'm compiling jenkins with mvn package -DskipTests However i had to remove *-Xmx800m* from *.mvn/jvm.config* because of $ mvn -v Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. Invalid maximum heap size: -Xmx800m I have -

Re: Jenkins 2.5.X HTTP404 error

2017-05-09 Thread JordanGS
How do i rebuild jenkins to verify if the issue is there or not? -- 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

Re: Jenkins 2.5.X HTTP404 error

2017-05-09 Thread JordanGS
2.50 was the first failure 2.49 still worked -- 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. To view this

Jenkins 2.5.X HTTP404 error

2017-05-09 Thread JordanGS
I have attached two

Re: Job Configuration Code Questions

2017-05-05 Thread JordanGS
you want to do. >> >> >>> Does that clarify it? If not, what else can I do to clarify the >>> question. Thanks :) >>> >>> Cheers, Goran. >>> >>> On May 5, 2017, 2:31 AM -0400, Baptiste Mathus <m...@batmat.net >>> >, wrote:

Re: How could I share, on main page, a sidebar link who address to F:\ ? (Secundary HDD)

2017-05-05 Thread JordanGS
https://wiki.jenkins-ci.org/display/JENKINS/Extension+points#Extensionpoints-hudson.model.RootAction the

Job Configuration Code Questions

2017-05-05 Thread JordanGS
1. I can add my Job Build step which is called "Run ABC" from the drop down list, after it's added. How do i prevent the user from adding another Build Step "Run ABC"? 2. How do i add a job configuration. Not a Post build step or a build step but rather a some options which

Post Build Step Console Output?

2017-05-04 Thread JordanGS
If i have a post build step, how do i get it to output to the Builds *Console Output *or at least to the terminal window which started jenkins? Thanks -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and

Re: Development Question Build action vs Post Build action

2017-04-13 Thread JordanGS
Per IRC discussion, i was refereed to: Actions "add an action in your build step (thinking about what it means when there is already one, same build step twice, and how to handle that), then check for an action of

Development Question Build action vs Post Build action

2017-04-13 Thread JordanGS
We have a build step that run an application, does a bunch of stuff, generates some reports and outputs a bunch of data to the console. The final report / information available during the build step is the list of all issues/alerts found. The application scans a given website for security

Development Question Build action vs Post Build action

2017-04-13 Thread JordanGS
I have a build step that run an application, does a bunch of stuff, generates some reports and outputs a bunch of data to the console. The final report / information available during the build step is the list of all issues/alerts found. The application scans a given website for security

Re: Jenkins Serialization Error

2017-04-13 Thread JordanGS
Oleg, thank you so much. Especially for "Understanding Jelly Tags", the GitHub repository linked in there is incredibly useful. I'll be learning the plugins you linked and looking at them very carefully. I have one question though. If you look at:

Re: [Question] Evaluate env var in text box to populate drop down list

2017-04-13 Thread JordanGS
Fair point, i'll leave it alone. Thanks :) -- 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. To view this

Re: Simple Jenkins Example Project

2017-04-12 Thread JordanGS
@Baptiste Mathus Example: you have basic jelly usage: https://wiki.jenkins-ci.org/display/JENKINS/Basic+guide+to+Jelly+usage+in+Jenkins and jelly form controls: https://wiki.jenkins-ci.org/display/JENKINS/Jelly+form+controls and a nice plugin called UI samples. This covers most of the basics

Re: Jenkins Serialization Error

2017-04-12 Thread JordanGS
Cool thank you, could you please link me any tutorials or guide or maybe other plugins you're familiar with that use JavaScript or Custom Jelly controls. Always open to learning but not sure where to start. (Google search isn't returning anything useful) -- You received this message because

Re: [Question] Evaluate env var in text box to populate drop down list

2017-04-12 Thread JordanGS
You say odd stuff, but then that would make it possible? Do you have an example i can look at maybe? -- 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

Re: Internationalized Help files?

2017-04-12 Thread JordanGS
If using help="/plugin//.html" which will check the *main/src/webapps *directory, then you need to clear your browser cache/history every time that you change the browser's Accept-Language otherwise it will only display the help file in the language in which it was first loaded. If you do not

Re: Internationalized Help files?

2017-04-12 Thread JordanGS
<https://lh3.googleusercontent.com/-cRxf7VoFM9c/WO5zMHZisPI/AHY/M_u7JahI048euoBubGr7Kfxr1hhydKOSgCLcB/s1600/jenkins%2Bhelp%2Binter.png> Here is my uploaded repository: https://github.com/JordanGS/zap-plugin/tree/myfeature What you see in the screenshots is at

Re: Internationalized Help files?

2017-04-12 Thread JordanGS
I did, see screenshot below. I removed the Locale Plugin and changed the Accept-Language value in Firefox to de. As you can see from the screenshot.

Re: Internationalized Help files?

2017-04-12 Thread JordanGS
@Daniel Beck The attached screenshot is @Ullrich Hafner's warnings-plugin. You can see here that he has english (en) and german (de) internationalization. In my own case i have

Re: Internationalized Help files?

2017-04-12 Thread JordanGS
Thanks for the reply. I'm using the same Jenkins instance (Jenkins ver. 2.46.1) Please see the attached screenshot, the config page changed but not the help file for me. How are you changing your locale to test this feature? A Jenkins Plugin or Firefox/Chrome Plugin? -- You received this

Internationalized Help files?

2017-04-11 Thread JordanGS
We can internationalize the job config page. After following: these instructions . I got that working for the ones Jenkins didn't automatically pick up. I was wondering

Re: Simple Jenkins Example Project

2017-04-11 Thread JordanGS
@Baptiste Mathus I really don't know, outside of the plugin i am working on, i don't use any Build Plugins. Maybe you can point me in the right direction? I just need some simple that adds a Build Step and that Build step does something but also uses values set in the Admin Configurations. My

Re: Wiki Page Layout

2017-04-11 Thread JordanGS
Ahh okay, misunderstood. Thanks for the clarification :) -- 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. To

Tutorial Request / An idiots guide to Jenkins

2017-04-11 Thread JordanGS
When someone from the development team has time, could they please write and finish a proper How to Jelly and Jenkins and a How to Groovy With Jenkins Plugin tutorial. There are "some" doc's, most are unfinished, have broken links or sections that say TODO. So far the best tutorial for jelly

Re: Wiki Page Layout

2017-04-11 Thread JordanGS
*Currently Wiki pages are being pulled to https://plugins.jenkins.io/ , and I am not sure that newly introduced layouts will work correctly there*I didn't know that, i have a lot to fix

Simple Jenkins Example Project

2017-04-11 Thread JordanGS
Can someone please point me in the direction of a simple Jenkins Project, either jenkins or groovy UI config files. I'm trying to understand all the little nuances and properly create a plugin. Thanks. -- You received this message because you are subscribed to the Google Groups "Jenkins

Re: Jenkins Serialization Error

2017-04-10 Thread JordanGS
I've dumbed it down even more. Current (working): https://github.com/jenkinsci/zap-plugin/blob/development/src/main/resources/org/jenkinsci/plugins/zap/ZAPDriver/config.jelly#L252-L255 What i want though, is the following: ${%Title} The reason is that i

Re: Jenkins Serialization Error

2017-04-10 Thread JordanGS
I've dumbed it down even more. Current (working): https://github.com/jenkinsci/zap-plugin/blob/development/src/main/resources/org/jenkinsci/plugins/zap/ZAPDriver/config.jelly#L252-L255 What i want though, is the following: ${%Title} The reason is that i

Jenkins Serialization Error

2017-04-10 Thread JordanGS
I am trying to minimize how vertical my items are. Original (Working):

[Question] Evaluate env var in text box to populate drop down list

2017-04-05 Thread JordanGS
I have two elements, a text box which takes a path and a drop down list below it that will populate the drop down list. How do i modify the doFill Items method to expand the value. See below method zapSettingsDir is the textbox with the path from the jelly config file.

Re: Confluence Source Editor

2017-04-04 Thread JordanGS
Done thanks, i'm having a hard time formatting with the GUI editor. Line spacing looks horrible no matter what i do :/ -- 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

Confluence Source Editor

2017-04-03 Thread JordanGS
Is there any plans on enabling the source editor in the future for the wiki, see here . Thanks -- You received this message because you are subscribed to the Google

Wiki Page Layout

2017-04-03 Thread JordanGS
If creating a layout with a sidebar on the left, is there any way to put the table of content on the left side bar and all of the data in the right panel. That way when the right panel is scrolled, the tablet of content in the left side bar will always be visible and won't scroll with the right

Jenkins Wiki/ Confluence edits.

2017-04-03 Thread JordanGS
With the changes made, quite a bit of my formatting was messed up. I was wondering if anyone knew how to adjust the vertical spacing for a column element or another good way of doing this. See the title for: https://wiki.jenkins-ci.org/display/JENKINS/zap+plugin I was the "Official OWASP Zed

Re: [Jenkins-infra] Wiki downtime/maintenance window scheduled for 2017-04-01 16-18:00 UTC

2017-04-03 Thread JordanGS
Able to save again, thanks =D -- 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. To view this discussion on the

Re: [Jenkins-infra] Wiki downtime/maintenance window scheduled for 2017-04-01 16-18:00 UTC

2017-04-02 Thread JordanGS
Congrats on the update! There seem to be some issues with the new system tho. All of my old wiki pages cannot be modified or new edits saved. The page throws a *Content Encoding Error*. See wiki link . -- You received this message

Re: Jenkins UX

2017-03-19 Thread JordanGS
Can someone please update this thread, the images are no longer there. https://jenkins.io/blog/2015/07/15/advancing-the-jenkins-gui-configuring-items-in-jenkins/ -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this

Cached Wiki Page

2017-03-19 Thread JordanGS
For the last few months now, this page has been cached: https://wiki.jenkins-ci.org/display/JENKINS/Official+OWASP+Zed+Attack+Proxy+Jenkins+Plugin however, it doesn't exist anymore. It was renamed to https://wiki.jenkins-ci.org/display/JENKINS/zap+plugin. On the

Re: Check credentials fails with ERROR

2017-03-18 Thread JordanGS
Thanks for the help daniel. For anyone with the same issue. Step 1) Try to run the following: mvn -X -Djavax.net.debug=ssl,handshake clean install Scroll through the log and find where the SSL handshake fails and why. Step 2) Go to: https://repo.jenkins-ci.org/public/ and download the

Re: Maven Repository 404 Not found?? Cannot build project.

2017-03-18 Thread JordanGS
Thank you, i'll update the other thread accordingly as this missing repo didn't cause any issues. -- 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

Maven Repository 404 Not found?? Cannot build project.

2017-03-18 Thread JordanGS
The following repository is no longer found on maven and causes a simple *mvn clean install *to fail. https://repo.maven.apache.org/maven2/org/jenkins-ci/plugins/plugin/2.11/plugin-2.11.pom Can somebody please shed some light as to why there is no longer a plugins directory under

Re: Check credentials fails with ERROR

2017-03-18 Thread JordanGS
And a copy of my pom.xml http://maven.apache.org/POM/4.0.0; xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd;> 4.0.0 org.jenkins-ci.plugins plugin 2.11

Re: Check credentials fails with ERROR

2017-03-18 Thread JordanGS
Here is my settings.xml in my .m2 folder http://maven.apache.org/SETTINGS/1.0.0; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd;>

Check credentials fails with ERROR

2017-03-17 Thread JordanGS
Followed the hosting instructions found here . I wanted to verify that your credential is correctly recognized by Maven so i ran mvn deploy Any advice would be appreciated. $ mvn deploy [INFO] Scanning for projects... Downloading:

Re: Testing a plugin before release

2017-03-13 Thread JordanGS
, which might be useful too if you'd >> like to deploy it to a test bed server. Just use -alpha in your version. >> >> >> Hope that helps >> B >> >> >> [1] >> https://jenkins.io/blog/2013/09/23/experimental-plugins-update-center/ >> &g

Testing a plugin before release

2017-03-13 Thread JordanGS
So as to avoid burning through version numbers with bad releases, i was wondering if there is a way to test to make sure everything will compile beforehand? To publish the plugin we use: mvn release:prepare release:perform The documentation says that the jenkins credentials can be verified

Re: Error when running maven command to release on jenkins-ci.org

2017-03-13 Thread JordanGS
It took a couple hours but i got it working. To answer your questions, i am using the same exact account. 1. Install Git Bash and make sure to configure the line ending conversions to *Check as-in, commit as-is* 2. Make sure, JAVA_HOME and M2_HOME are recognized 3. If using SSH,

Re: Error when running maven command to release on jenkins-ci.org

2017-03-13 Thread JordanGS
And to add another thing, when i try using windows cmd.exe, i get [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy- plugin:2.8.2:deploy (default-deploy) on project zap: Failed to deploy artifacts: Could not transfer artifact org.jenkins-ci.plugins:zap:hpi:1.0.6 from/to

Error when running maven command to release on jenkins-ci.org

2017-03-12 Thread JordanGS
ers\username\.m2\settings.xml to include the changes mentioned in the above tutorial. I also created an SSH key, imported it into github and started it with the ssh agent. Testing my connection with the command *ssh -T g...@github.com*At this point, i get the following message * Hi JordanGS

Re: continuous-integration/jenkins/pr-merge check never ran for pull request

2017-03-12 Thread JordanGS
Thank you -- 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. To view this discussion on the web visit

Re: Java Version on build-server for zap-plugin

2017-03-12 Thread JordanGS
Thank you! -- 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. To view this discussion on the web visit

Java Version on build-server for zap-plugin

2017-03-10 Thread JordanGS
Just wanted to ask, how do i check which version of java (7 or 8) is being used to compile the project on the build server. https://ci.jenkins.io/job/Plugins/job/zap-plugin/ Also, is it possible for me to configure it myself or would i need to an admin to configure it for me? Thank you,

continuous-integration/jenkins/pr-merge check never ran for pull request

2017-03-10 Thread JordanGS
For the following pull request https://github.com/jenkinsci/zap-plugin/pull/3, the continuous-integration/jenkins/pr-merge never ran to test the build. However, for https://github.com/jenkinsci/zap-plugin/pull/2 it did. Is this a bug or is there a particular reason that the build was never

How to check plugin total downloads and per version

2016-11-22 Thread JordanGS
Is there any way to check how many downloads there are in total and per version currently being used? https://wiki.jenkins-ci.org/display/JENKINS/zap+plugin I also notice that my plugin information on the wiki seems to be missing the chart. Thanks :) -- You received this message because you

Re: Cloudbees build failing due to java doc errors?

2016-11-19 Thread JordanGS
@Jesse It's okay thank you for the explanation. I was migrated to https://ci.jenkins.io/job/Plugins/job/zap-plugin/ I love it, thing of beauty. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop

Re: Release Delete Request

2016-11-18 Thread JordanGS
I understand that now. Thank you Jesse, but adding the webhook to jenkins.ci.cloudbees.com (howto/information on github settings to cloudbees) would be useful i think, i couldn't find that anywhere and i was wondering the entire time why it wasn't building on there since it says "To have

Release Delete Request

2016-11-18 Thread JordanGS
There werre some problems because i released with Java 8, i was unable to run this properly on my Java 7 jenkins. I thought i could just release again and overwrite the existing folder but i can't. Live and learn i suppose. Next time i'll increment to 1.0.1 as a hotfix but for now because i

Re: Cloudbees build failing due to java doc errors?

2016-11-18 Thread JordanGS
@Arnaud I will changed it to J7, then it will be compatible with J7 and J8, correct? Also do i need to undo my 1.0.0 release because it compiled with J8 and NOT J7? If so, how would i undo my release? Please see the release

Re: Cloudbees build failing due to java doc errors?

2016-11-17 Thread JordanGS
1) Do i need to reconfigure everything to run with java 7? 2) Do i need to undo my 1.0.0 release because it compiled with java 7? If so, how would i undo my release? -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from

Cloudbees build failing due to java doc errors?

2016-11-17 Thread JordanGS
Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:2.10.1:javadoc (default) on project zap: An error has occurred in JavaDocs report generation See here for full log Usage pom.xml is available here

Re: Problem with mvn prepare throws error

2016-11-17 Thread JordanGS
Resolved: http://stackoverflow.com/questions/32706000/error-in-maven-build-mvn-bat-not-recognized -- 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

Problem with mvn prepare throws error

2016-11-17 Thread JordanGS
Step 1) open command line as administrator Step 2) navigate to location where my source is on my machine (in this case my GitHub repo) Step 3) run mvn prepare Please see the below attached screenshot. When it asked me for release version i said 1.0.0 SCM release tag i said zap-1.0.0 and new

Re: zaproxy-plugin weirdness and request

2016-11-16 Thread JordanGS
Okay let's make the description just "zap-plugin " -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop

zaproxy-plugin weirdness and request

2016-11-15 Thread JordanGS
1. At the request of jenkins admin's, i have reverted all changes made to the jenkins zaproxy-plugin. Updated the readme to inform users that it is discontinued. If you look at cloudbees , the build's seem to be failing. It