Stephane Eybert

Results 22 comments of Stephane Eybert

@samdoctor How did you do to dig into the stack trace ?

My log output shows: ``` SEVERE: Internal error: java.lang.IllegalArgumentException: Unable to find the 'mvn' command java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Unable to find the 'mvn' command at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:314) at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:319) at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1702) at...

Having the same issue: > FAILURE: Build failed with an exception. > > * What went wrong: > Could not resolve all dependencies for configuration ':database-service:compile'. > > Could not...

@hosnimed So you did not really pinpoint what caused the issue ?

Or is this `/u01/app/oracle/oradata/XE/ directory` the one holding the data ?

I've made some progress. And I could find my way into specifying a custom database file location. But I loose it across a container restart. I described the issue [here](https://stackoverflow.com/questions/51135805/a-custom-oracle-xe-data-directory-location-to-retrieve-my-tables-data-across-doc).

@mjdavies No I haven't tried again. If I do try again some day, I'll publish my progress on the above SO thread.

How do you go about configuring under `lua` ? I was aiming for something along the lines of: ``` local status_ok, semantic = pcall(require, "semantic") if not status_ok then return...

@lilworks You got some progress ?

@pmarsceill Here is how I did to import it. ``` import Vex from 'vexflow'; ``` My `package.json` file contains: ``` "vexflow": "^3.0.9", "@types/vexflow": "^1.2.33", ``` I could then use it...