Marcin Zajączkowski
Marcin Zajączkowski
Could be nice for corporate environments. Did you mean `systemProp.https.*` properties or something specific in the repository configuration?
The plugin currently uses HTTPBuilder which seems to require defining proxy settings in a [specific way](https://gist.github.com/bryanchug/4172603). However, I'm in the middle :-) of migration to OkHttp, so there is a...
In my opinion it would be dangerous. Image a situation that to some of those repositories are still being uploaded with artifacts. Closing too early would provide not fully complete...
While the toolchain is fixed, one test fails with JDK18 (Temurin 18.0.1+10) on CI: https://github.com/spockframework/spock/runs/6235781892?check_suite_focus=true#step:4:141 ``` PartialMockingInterfacesWithDefaultMethods > IQuarterlyCompoundedDeposit: should throw unchecked exception for negative values of principalAmount FAILED Expected...
It looks like a duplication of [issue 370](https://code.google.com/p/spock/issues/detail?id=370) and I have even created [test cases](https://github.com/spockframework/spock/pull/42) reproducing this problem.
Btw, the problem is only with getting annotations from fields in a trait, so a workaround those fields can be marked as `static`.
In addition, byte-buddy or objenesis are used in regular testing (just with spying). However, `EmbeddedSpecRunner` is much more sophisticated tool for plugin writers or some dirty hacks. Having [~60 hits](https://github.com/search?q=EmbeddedSpecRunner&type=Code)...
That approach is quite uncommon. Could you paste minimal code that shows the problem and also explain why you need to do it that way?
A quick shot, without going deep into your approach is to move the: ``` @Autowired AutomationTestUtils automationTestUtils ``` definition from a method to the class (specification) level. Spring beans cannot...
XML? I hope you are not bound to Spring 3. `@ComponentScan('your-package')` should do the same. Anyway, is running the Spock test in a production context (at least in the acceptance...