Robert Važan

Results 116 comments of Robert Važan

PS: Wikibase API would also have to be reviewed to make sure it gives full control of the server. Tests need to create users, manipulate their permissions, and bulk-delete everything...

@wetneb I have done co-development of client+server+messages in my professional work. Improved testability of the full stack is totally worth the extra 10-20% of code per feature. Client has to...

This should be closed as a special case of #327.

This is a subset of #535.

Though, I would note, It's probably impossible to configure all IDEs consistently. Maintaining indentation by hand is a nightmare. If we aren't going to standardize on an IDE, then it...

@wetneb I will definitely need to read recent changes in my project at some point in the future. I would certainly test this and maybe I would find something to...

@wetneb The usual way to test libraries with my other projects is to just enable workspace dependency resolution in Eclipse. I just open the library (WDTK in this case) in...

After some research, I think multi-release JARs might not be that hard. They are hard when supplying different classes for different JREs, but just adding module-info.java into Java 8 JARs...

While experimenting with JPMS in WDTK, I came across blocker for JPMS support. WDTK uses two OkHttp libraries that present themselves as two modules (`okhttp3` and `okhttp3.urlconnection`) but claim the...

I am using dependency management simply to keep versions in parent POM, but maven docs indeed say that transitive dependencies can be controlled this way too. That's a plus, AFAICT.