Vladimir Sitnikov

Results 969 comments of Vladimir Sitnikov

```diff --- a/janino/pom.xml +++ b/janino/pom.xml @@ -65,6 +65,8 @@ org.codehaus.janino, org.codehaus.janino.samples, org.codehaus.janino.tools, org.codehaus.janino.util, org.codehaus.janino.util.resource org.codehaus.janino.commons-compiler + osgi.serviceloader;osgi.serviceloader="org.codehaus.commons.compiler.ICompilerFactory" + osgi.extender;filter:="(&(osgi.extender=osgi.serviceloader.registrar)(version>=1.0)(!(version>=2.0)))" ``` It adds the relevant headers to the manifest, however, I...

I think pax-exam can help with testing. I test pgjdbc as follows: https://github.com/pgjdbc/pgjdbc/tree/master/pgjdbc-osgi-test/src/test

``` jetty-server-12.0.2.jar(/org/eclipse/jetty/server/Server.class) class file has wrong version 61.0, should be 55.0 ``` Jetty 12 requires Java 17

Relevant issues: https://github.com/gradle/actions/issues/283, https://github.com/gdubw/gng/issues/15

Gradle distribution validation might be relevant as well: https://github.com/gradle/actions/issues/286

Of course, if you think it is worth integrating the verification to `gm`, then it would be great to integrate it for all the build systems.

`gm` is the tool for end-users rather than a CI tool, so I guess CI questions are irrelevant here > Can the gradle or gradlew commands perform the check? The...

We should probably define what happens if multiple repositories match. We might add an enum like: FAIL (default), USE_LATEST

After having some more thought, I incline to a different design: what if `InitializeNexusStagingRepository` was like "find an existing staging repository or create a new one if missing"? Then it...