-
If I have two classes e.g., //SOURCES **.*.java
//DEPS some:deps:1.0.0
package io.test.folder;
public class A {
private B b;
...
}
---
package io.test.folder.subfolder;
public class B {} and I invoke Is this an intended behavior? Kind regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @Sandared , well it's not so much intended behaviour but simply the fact that's the only behaviour possible when dealing with remote sources because most of the time there's no way to turn So is there a work-around? Yes: don't use patterns, simply explicitly list all the files one by one. This will then work both locally and remotely. |
Beta Was this translation helpful? Give feedback.
Hi @Sandared , well it's not so much intended behaviour but simply the fact that's the only behaviour possible when dealing with remote sources because most of the time there's no way to turn
**/*.java
into an actual list. (Now, we might add support for sites like GitHub where we can list files at some point in the future, but there are no real plans for that yet).So is there a work-around? Yes: don't use patterns, simply explicitly list all the files one by one. This will then work both locally and remotely.