Luca Garulli

Results 316 comments of Luca Garulli

On Apache Tinkerpop Gremlin Jira seems it's an issue with Gradle and Gremlin.

Fond the issue, the commands are passed after the class but they should be before the Java class. ``` java ... %CMD_LINE_ARGS% com.arcadedb.server.ArcadeDBServer ```

Ok, tested the unix/macosx/linux version and works. I don't have a Windows quickly to try. Could you please get the latest distribution from git, build it (`mvn clean install -DskipTests`)...

I guess `:` cause troubles under Windows. Could you please try this: ``` server.bat -Darcadedb.server.plugins="Postgres:com.arcadedb.postgres.PostgresProtocolPlugin" ```

I pushed a fix for that, please let me know if you can retry it after pulling from the latest version..

The weird thing is that is trying to load the class `Postgres:com.arcadedb.postgres.PostgresProtocolPlugin` but it should look for `com.arcadedb.postgres.PostgresProtocolPlugin`. it's seems the parsing of parameters doesn't work under windows. I'm looking...

The syntax is `:`, so it's correct `Postgres:com.arcadedb.postgres.PostgresProtocolPlugin`. But for some reason, it's not splitting the string.

@Jurgen-Aquilina could you please retry with the latest release? Thanks in advance.

If you do this in a command prompt: ``` set ARCADEDB_SETTINGS=-Darcadedb.server.plugins="Postgres:com.arcadedb.postgres.PostgresProtocolPlugin" server.bat ``` Works? This sets the environment variable and let the script using that instead of receiving as an...

Thanks for the report. I've changed server.bat and now should work as for documentation. ``` server.bat -Darcadedb.server.plugins="Postgres:com.arcadedb.postgres.PostgresProtocolPlugin" ``` Please, if you can, confirm with the latest version if server.bat now...