davidcyp
davidcyp
@manojdcoder done!
Same issue here. SQ receives the reports for both non-PR as PR branches. For non-PR branches the quality gate fails and we can see a menu entry 'owasp dependency check'...
Same here. I was searching the website for more information on how to write plugins, it's only in this ticket that I've read that a plugin system indeed seems to...
Make sure to ping on this thread for a review / test, I'll be watching It :)
Have you tried with _sudo_ ?
@Abi1210 Are you creating a new controller or a new widget? (on slack you mentioned widget, which is slightly different then creating a _normal_ controller. Besides that, in your test...
@Abi1210 this must do the job. Can you confirm this please? ``` Alloy = { createController: function(){} }; var dealerControllerMock = { getView: function(){} } it('my test', function(){ spyOn(Alloy, 'createController').andReturnValue(dealerControllerMock);...
@StevenGerdes got the same issue here. As a workaround, I implemented the FixedFormatter on every possible sub-record, eg.: In my parent record: ` @Field(offset = 31, length = 100, formatter...
@StevenGerdes .. and encapsulated it in an abstract super class: `public abstract class AbstractSubRecordFixedFormatter implements FixedFormatter { @Override public Object parse(String s, FormatInstructions formatInstructions) throws FixedFormatException { return null; }...
Apparently there were still some more problems. However, I found out the maven repo only hosts up to version 1.2.2. If you download the source code and build it yourself,...