Re: Maven and the Path API

2022-11-24 Thread Gary Gregory
Nice! Gary On Wed, Nov 23, 2022, 14:31 Guillaume Nodet wrote: > That's done in the v4 api. > > Le mer. 23 nov. 2022 à 19:37, Christoph Läubrich a > écrit : > > > Currently maven is bound to the Java File API, e.g. > > > > org.apache.maven.project.MavenProject.getBasedir() > > org.apache.maven.

Re: Maven and the Path API

2022-11-23 Thread Guillaume Nodet
That's done in the v4 api. Le mer. 23 nov. 2022 à 19:37, Christoph Läubrich a écrit : > Currently maven is bound to the Java File API, e.g. > > org.apache.maven.project.MavenProject.getBasedir() > org.apache.maven.project.MavenProject.getFile() > > while others uses Strings, e.g. > > org.apache.

Maven and the Path API

2022-11-23 Thread Christoph Läubrich
Currently maven is bound to the Java File API, e.g. org.apache.maven.project.MavenProject.getBasedir() org.apache.maven.project.MavenProject.getFile() while others uses Strings, e.g. org.apache.maven.project.MavenProject.addCompileSourceRoot(String) I wonder if it would be good to move Maven t