You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the plug-in runs in a Windows box, it fails with an ArrayOutOfBoundsException. Root cause is in PitPublisher class, line 124, where it is expected that path separator is a forward slash. So, for example, when run in Windows, the report name is something like "C:\java\data\jenkins\jobs\test-mutation\workspace\target\pit-reports\201803261622\mutations.xml", thus no element with index 1 is obtained from the split("/"). Using the path separator for the platform might solve the issue.
The text was updated successfully, but these errors were encountered:
When the plug-in runs in a Windows box, it fails with an ArrayOutOfBoundsException. Root cause is in PitPublisher class, line 124, where it is expected that path separator is a forward slash. So, for example, when run in Windows, the report name is something like "C:\java\data\jenkins\jobs\test-mutation\workspace\target\pit-reports\201803261622\mutations.xml", thus no element with index 1 is obtained from the split("/"). Using the path separator for the platform might solve the issue.
The text was updated successfully, but these errors were encountered: